aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/sysdep.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/sysdep.c b/src/sysdep.c
index af84c34a0b9..8c0e49231a4 100644
--- a/src/sysdep.c
+++ b/src/sysdep.c
@@ -21,11 +21,11 @@ Boston, MA 02111-1307, USA. */
21 21
22#include <signal.h> 22#include <signal.h>
23#include <setjmp.h> 23#include <setjmp.h>
24#ifdef HAVE_STDLIB_H
25#include <stdlib.h>
26#endif
27 24
28#include <config.h> 25#include <config.h>
26#ifdef STDC_HEADERS
27#include <stdlib.h>
28#endif
29#include "lisp.h" 29#include "lisp.h"
30#include "blockinput.h" 30#include "blockinput.h"
31#undef NULL 31#undef NULL
@@ -101,7 +101,9 @@ extern unsigned start __asm__ ("start");
101#endif 101#endif
102#endif 102#endif
103 103
104#ifndef errno
104extern int errno; 105extern int errno;
106#endif
105 107
106#ifdef VMS 108#ifdef VMS
107#include <rms.h> 109#include <rms.h>