aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPavel Janík2002-01-01 19:15:26 +0000
committerPavel Janík2002-01-01 19:15:26 +0000
commit4838e624ad5ced0226c3b202f6d942aa9e878a80 (patch)
treecd2d33164b31a0ab02889b1893870634d35ae3e4 /src
parent3c1e6b469b8b7b7c067ce89e3cfb36871b257420 (diff)
downloademacs-4838e624ad5ced0226c3b202f6d942aa9e878a80.tar.gz
emacs-4838e624ad5ced0226c3b202f6d942aa9e878a80.zip
Include <config.h>.
Diffstat (limited to 'src')
-rw-r--r--src/sysdep.c4
-rw-r--r--src/unexapollo.c5
-rw-r--r--src/w32.c6
-rw-r--r--src/w32bdf.c6
-rw-r--r--src/w32heap.c4
-rw-r--r--src/w32inevt.c4
-rw-r--r--src/w32proc.c6
7 files changed, 28 insertions, 7 deletions
diff --git a/src/sysdep.c b/src/sysdep.c
index 6d0528cb2db..478d56a43a9 100644
--- a/src/sysdep.c
+++ b/src/sysdep.c
@@ -19,8 +19,10 @@ along with GNU Emacs; see the file COPYING. If not, write to
19the Free Software Foundation, Inc., 59 Temple Place - Suite 330, 19the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20Boston, MA 02111-1307, USA. */ 20Boston, MA 02111-1307, USA. */
21 21
22#ifdef HAVE_CONFIG_H
23#include <config.h>
24#endif
22 25
23#include "config.h"
24#include <signal.h> 26#include <signal.h>
25#include <setjmp.h> 27#include <setjmp.h>
26#ifdef HAVE_UNISTD_H 28#ifdef HAVE_UNISTD_H
diff --git a/src/unexapollo.c b/src/unexapollo.c
index 4c87bfa3fe4..4a5ab60b254 100644
--- a/src/unexapollo.c
+++ b/src/unexapollo.c
@@ -20,7 +20,10 @@ Boston, MA 02111-1307, USA. */
20 20
21/* Written by Leonard N. Zubkoff. */ 21/* Written by Leonard N. Zubkoff. */
22 22
23#include "config.h" 23#ifdef HAVE_CONFIG_H
24#include <config.h>
25#endif
26
24#include <fcntl.h> 27#include <fcntl.h>
25 28
26 29
diff --git a/src/w32.c b/src/w32.c
index a8e4a5f37da..f6e9f765500 100644
--- a/src/w32.c
+++ b/src/w32.c
@@ -35,7 +35,11 @@ Boston, MA 02111-1307, USA.
35#include <sys/utime.h> 35#include <sys/utime.h>
36 36
37/* must include CRT headers *before* config.h */ 37/* must include CRT headers *before* config.h */
38#include "config.h" 38
39#ifdef HAVE_CONFIG_H
40#include <config.h>
41#endif
42
39#undef access 43#undef access
40#undef chdir 44#undef chdir
41#undef chmod 45#undef chmod
diff --git a/src/w32bdf.c b/src/w32bdf.c
index d2d33d72ca3..801c914d8d9 100644
--- a/src/w32bdf.c
+++ b/src/w32bdf.c
@@ -22,7 +22,11 @@ Boston, MA 02111-1307, USA. */
22 MULE for W32). */ 22 MULE for W32). */
23 23
24#include <windows.h> 24#include <windows.h>
25#include "config.h" 25
26#ifdef HAVE_CONFIG_H
27#include <config.h>
28#endif
29
26#include "lisp.h" 30#include "lisp.h"
27#include "charset.h" 31#include "charset.h"
28#include "keyboard.h" 32#include "keyboard.h"
diff --git a/src/w32heap.c b/src/w32heap.c
index eb878a45e94..e90213a6c36 100644
--- a/src/w32heap.c
+++ b/src/w32heap.c
@@ -21,7 +21,9 @@ Boston, MA 02111-1307, USA.
21 Geoff Voelker (voelker@cs.washington.edu) 7-29-94 21 Geoff Voelker (voelker@cs.washington.edu) 7-29-94
22*/ 22*/
23 23
24#include "config.h" 24#ifdef HAVE_CONFIG_H
25#include <config.h>
26#endif
25 27
26#include <stdlib.h> 28#include <stdlib.h>
27#include <stdio.h> 29#include <stdio.h>
diff --git a/src/w32inevt.c b/src/w32inevt.c
index d2c37aa0b0b..df9e0d48a4e 100644
--- a/src/w32inevt.c
+++ b/src/w32inevt.c
@@ -23,7 +23,9 @@ Boston, MA 02111-1307, USA.
23*/ 23*/
24 24
25 25
26#include "config.h" 26#ifdef HAVE_CONFIG_H
27#include <config.h>
28#endif
27 29
28#include <stdlib.h> 30#include <stdlib.h>
29#include <stdio.h> 31#include <stdio.h>
diff --git a/src/w32proc.c b/src/w32proc.c
index 7c9aad6b0a5..735df38b8ce 100644
--- a/src/w32proc.c
+++ b/src/w32proc.c
@@ -30,7 +30,11 @@ Boston, MA 02111-1307, USA.
30#include <signal.h> 30#include <signal.h>
31 31
32/* must include CRT headers *before* config.h */ 32/* must include CRT headers *before* config.h */
33#include "config.h" 33
34#ifdef HAVE_CONFIG_H
35#include <config.h>
36#endif
37
34#undef signal 38#undef signal
35#undef wait 39#undef wait
36#undef spawnve 40#undef spawnve