From: Paul Eggert Date: Sat, 16 Apr 2011 21:50:01 +0000 (-0700) Subject: * eval.c: Include , for vsnprintf on non-GNU/Linux hosts. X-Git-Tag: emacs-pretest-24.0.90~104^2~275^2~268^2~6 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4e2fe2e61de8ca79587dad5563c847feadd10cdf;p=emacs.git * eval.c: Include , for vsnprintf on non-GNU/Linux hosts. --- diff --git a/src/ChangeLog b/src/ChangeLog index 5d6eb0a435b..d7dc454c3dc 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,7 @@ 2011-04-16 Paul Eggert + * eval.c: Include , 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): diff --git a/src/eval.c b/src/eval.c index c068f5f3fbf..b843ca5b2ec 100644 --- a/src/eval.c +++ b/src/eval.c @@ -20,6 +20,7 @@ along with GNU Emacs. If not, see . */ #include #include #include +#include #include "lisp.h" #include "blockinput.h" #include "commands.h"