1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-27 07:41:28 -08:00

* eval.c: Include <stdio.h>, for vsnprintf on non-GNU/Linux hosts.

This commit is contained in:
Paul Eggert 2011-04-16 14:50:01 -07:00
parent f97334a26e
commit 4e2fe2e61d
2 changed files with 3 additions and 0 deletions

View file

@ -1,5 +1,7 @@
2011-04-16 Paul Eggert <eggert@cs.ucla.edu>
* eval.c: Include <stdio.h>, for vsnprintf on non-GNU/Linux hosts.
* data.c (arith_error): Mark with NO_RETURN if it doesn't return.
* alloc.c (bytes_used_when_full, SPARE_MEMORY, BYTES_USED):

View file

@ -20,6 +20,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
#include <config.h>
#include <limits.h>
#include <setjmp.h>
#include <stdio.h>
#include "lisp.h"
#include "blockinput.h"
#include "commands.h"