aboutsummaryrefslogtreecommitdiffstats
path: root/src/sysdep.c
diff options
context:
space:
mode:
authorDan Nicolaescu <[email protected]>2008-12-19 20:52:15 +0000
committerDan Nicolaescu <[email protected]>2008-12-19 20:52:15 +0000
commit53934c983b9d91ed8845b35f584e894bda7501c0 (patch)
tree83f985dbdbf6681d574816051866ffa5b1fc9e5e /src/sysdep.c
parent06e111a6efbbe275e8f7c364ff8e5955d1ab75f0 (diff)
Include alloca.h.
Diffstat (limited to 'src/sysdep.c')
-rw-r--r--src/sysdep.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/sysdep.c b/src/sysdep.c
index 7f53ea2f78..4b3ca59691 100644
--- a/src/sysdep.c
+++ b/src/sysdep.c
@@ -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. */