]> git.eshelyaron.com Git - emacs.git/commitdiff
* eval.c: Include <stdio.h>, for vsnprintf on non-GNU/Linux hosts.
authorPaul Eggert <eggert@cs.ucla.edu>
Sat, 16 Apr 2011 21:50:01 +0000 (14:50 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Sat, 16 Apr 2011 21:50:01 +0000 (14:50 -0700)
src/ChangeLog
src/eval.c

index 5d6eb0a435bfe1b2362ce3f21d0056a125c79094..d7dc454c3dc553942d2b5d6b62bbe71ecff8ae92 100644 (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):
index c068f5f3fbf94efb7e1730681d9c573d0274cb22..b843ca5b2ecb0469ed8fa66fa9dab8f91669849c 100644 (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"