aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
authorAndreas Schwab1999-08-30 16:18:30 +0000
committerAndreas Schwab1999-08-30 16:18:30 +0000
commit92939d319a808c2f2162e079eadbdab2db813fcf (patch)
treeb2699d8e53681282685882623175b17ca28baa29 /src/alloc.c
parent67ba84d17ae7219d3a6b10c5b72c85a273df0572 (diff)
downloademacs-92939d319a808c2f2162e079eadbdab2db813fcf.tar.gz
emacs-92939d319a808c2f2162e079eadbdab2db813fcf.zip
Include <stdlib.h> if available.
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/alloc.c b/src/alloc.c
index 571d6291c2b..258a610886d 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -23,6 +23,11 @@ Boston, MA 02111-1307, USA. */
23#include <signal.h> 23#include <signal.h>
24 24
25#include <config.h> 25#include <config.h>
26
27#ifdef STDC_HEADERS
28#include <stdlib.h>
29#endif
30
26#include "lisp.h" 31#include "lisp.h"
27#include "intervals.h" 32#include "intervals.h"
28#include "puresize.h" 33#include "puresize.h"