aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJan Djärv2004-02-09 15:39:49 +0000
committerJan Djärv2004-02-09 15:39:49 +0000
commit5890e9f7acf815c82fd9ad490b9634578fc05c5e (patch)
treedfaec4acdcca3a21a72842a85d13131d95665c81 /src
parent429e7e2d69dd0fab7389dc4f7fc6e95d3e4bd612 (diff)
downloademacs-5890e9f7acf815c82fd9ad490b9634578fc05c5e.tar.gz
emacs-5890e9f7acf815c82fd9ad490b9634578fc05c5e.zip
Move include stdio.h to same place as in other files.
Diffstat (limited to 'src')
-rw-r--r--src/atimer.c4
-rw-r--r--src/region-cache.c4
-rw-r--r--src/sysdep.c2
-rw-r--r--src/xfaces.c2
4 files changed, 6 insertions, 6 deletions
diff --git a/src/atimer.c b/src/atimer.c
index 6b0e0777886..2ddc7427f56 100644
--- a/src/atimer.c
+++ b/src/atimer.c
@@ -19,13 +19,13 @@ the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19Boston, MA 02111-1307, USA. */ 19Boston, MA 02111-1307, USA. */
20 20
21#include <config.h> 21#include <config.h>
22#include <lisp.h>
23#include <signal.h> 22#include <signal.h>
23#include <stdio.h>
24#include <lisp.h>
24#include <syssignal.h> 25#include <syssignal.h>
25#include <systime.h> 26#include <systime.h>
26#include <blockinput.h> 27#include <blockinput.h>
27#include <atimer.h> 28#include <atimer.h>
28#include <stdio.h>
29 29
30#ifdef HAVE_UNISTD_H 30#ifdef HAVE_UNISTD_H
31#include <unistd.h> 31#include <unistd.h>
diff --git a/src/region-cache.c b/src/region-cache.c
index fc9d3f98de0..251382a5a0e 100644
--- a/src/region-cache.c
+++ b/src/region-cache.c
@@ -21,12 +21,12 @@ Boston, MA 02111-1307, USA. */
21 21
22 22
23#include <config.h> 23#include <config.h>
24#include <stdio.h>
25
24#include "lisp.h" 26#include "lisp.h"
25#include "buffer.h" 27#include "buffer.h"
26#include "region-cache.h" 28#include "region-cache.h"
27 29
28#include <stdio.h>
29
30 30
31/* Data structures. */ 31/* Data structures. */
32 32
diff --git a/src/sysdep.c b/src/sysdep.c
index 64fdbe8f8c9..96f857432a8 100644
--- a/src/sysdep.c
+++ b/src/sysdep.c
@@ -24,6 +24,7 @@ Boston, MA 02111-1307, USA. */
24#endif 24#endif
25 25
26#include <signal.h> 26#include <signal.h>
27#include <stdio.h>
27#include <setjmp.h> 28#include <setjmp.h>
28#ifdef HAVE_UNISTD_H 29#ifdef HAVE_UNISTD_H
29#include <unistd.h> 30#include <unistd.h>
@@ -80,7 +81,6 @@ static int delete_exited_processes;
80#undef fwrite 81#undef fwrite
81#endif 82#endif
82 83
83#include <stdio.h>
84#include <sys/types.h> 84#include <sys/types.h>
85#include <sys/stat.h> 85#include <sys/stat.h>
86#include <errno.h> 86#include <errno.h>
diff --git a/src/xfaces.c b/src/xfaces.c
index bb95b1494fe..d8034c1d5d7 100644
--- a/src/xfaces.c
+++ b/src/xfaces.c
@@ -192,6 +192,7 @@ Boston, MA 02111-1307, USA. */
192 used to fill in unspecified attributes of the default face. */ 192 used to fill in unspecified attributes of the default face. */
193 193
194#include <config.h> 194#include <config.h>
195#include <stdio.h>
195#include <sys/types.h> 196#include <sys/types.h>
196#include <sys/stat.h> 197#include <sys/stat.h>
197 198
@@ -261,7 +262,6 @@ Boston, MA 02111-1307, USA. */
261 262
262#endif /* HAVE_X_WINDOWS */ 263#endif /* HAVE_X_WINDOWS */
263 264
264#include <stdio.h>
265#include <ctype.h> 265#include <ctype.h>
266 266
267#define abs(X) ((X) < 0 ? -(X) : (X)) 267#define abs(X) ((X) < 0 ? -(X) : (X))