From: Dan Nicolaescu Date: Fri, 19 Dec 2008 20:52:15 +0000 (+0000) Subject: Include alloca.h. X-Git-Tag: emacs-pretest-23.0.90~975 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=53934c983b9d91ed8845b35f584e894bda7501c0;p=emacs.git Include alloca.h. --- diff --git a/src/ChangeLog b/src/ChangeLog index 4bc6d54c1a0..5ed15b4e59a 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2008-12-19 Dan Nicolaescu + + * sysdep.c: Include alloca.h. + 2008-12-19 Dan Nicolaescu Reorganize implementation of Flist_system_processes and diff --git a/src/sysdep.c b/src/sysdep.c index 7f53ea2f788..4b3ca59691e 100644 --- a/src/sysdep.c +++ b/src/sysdep.c @@ -35,6 +35,10 @@ along with GNU Emacs. If not, see . */ #ifdef HAVE_UNISTD_H #include #endif +#ifdef HAVE_ALLOCA_H +#include +#endif /* HAVE_ALLOCA_H */ + #include "lisp.h" /* Including stdlib.h isn't necessarily enough to get srandom declared, e.g. without __USE_XOPEN_EXTENDED with glibc 2. */