aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRoland McGrath1994-02-20 19:45:18 +0000
committerRoland McGrath1994-02-20 19:45:18 +0000
commit26e0a910b0f1945aec5f76433a6c9b7c82371046 (patch)
treebde50cfe5f6cb507d1a80b96a4928e92f0975e49 /src
parent4f480b74d7fe183bc55103eaa73541f59a8413eb (diff)
downloademacs-26e0a910b0f1945aec5f76433a6c9b7c82371046.tar.gz
emacs-26e0a910b0f1945aec5f76433a6c9b7c82371046.zip
Move config.h after system includes.
Diffstat (limited to 'src')
-rw-r--r--src/unexsunos4.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/unexsunos4.c b/src/unexsunos4.c
index 48934f21447..fd0f7ec419c 100644
--- a/src/unexsunos4.c
+++ b/src/unexsunos4.c
@@ -23,10 +23,6 @@
23 * is somewhat abused here) is loaded first! 23 * is somewhat abused here) is loaded first!
24 * 24 *
25 */ 25 */
26#ifdef emacs
27#include <config.h>
28#endif
29
30#include <sys/param.h> 26#include <sys/param.h>
31#include <sys/mman.h> 27#include <sys/mman.h>
32#include <sys/file.h> 28#include <sys/file.h>
@@ -35,6 +31,13 @@
35#include <stdio.h> 31#include <stdio.h>
36#include <a.out.h> 32#include <a.out.h>
37 33
34/* Do this after the above #include's in case a configuration file wants
35 to define things for this file based on what <a.out.h> defines. */
36#ifdef emacs
37#include <config.h>
38#endif
39
40
38/* NetBSD needs this bit, but SunOS does not have it. */ 41/* NetBSD needs this bit, but SunOS does not have it. */
39#ifndef MAP_FILE 42#ifndef MAP_FILE
40#define MAP_FILE 0 43#define MAP_FILE 0