]> git.eshelyaron.com Git - emacs.git/commitdiff
Include alloca.h.
authorDan Nicolaescu <dann@ics.uci.edu>
Fri, 19 Dec 2008 20:52:15 +0000 (20:52 +0000)
committerDan Nicolaescu <dann@ics.uci.edu>
Fri, 19 Dec 2008 20:52:15 +0000 (20:52 +0000)
src/ChangeLog
src/sysdep.c

index 4bc6d54c1a0e1ee1e207a6d4b1449c35fea95d27..5ed15b4e59a8a0c42f8d432f96badd430c409050 100644 (file)
@@ -1,3 +1,7 @@
+2008-12-19  Dan Nicolaescu  <dann@ics.uci.edu>
+
+       * sysdep.c: Include alloca.h.
+
 2008-12-19  Dan Nicolaescu  <dann@ics.uci.edu>
 
        Reorganize implementation of Flist_system_processes and
index 7f53ea2f788c7601a0a19fbb506f2773acfc615e..4b3ca59691ed42e2951aeccfb6a783c0b1967299 100644 (file)
@@ -35,6 +35,10 @@ along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.  */
 #ifdef HAVE_UNISTD_H
 #include <unistd.h>
 #endif
+#ifdef HAVE_ALLOCA_H
+#include <alloca.h>
+#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.  */