aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1993-05-23 18:09:41 +0000
committerRichard M. Stallman1993-05-23 18:09:41 +0000
commit039440c43e10fb3e73fa75ec18b3c5770019cf4e (patch)
treecfcc60a91232a2d536ff60827e0dce3c98e43b64
parent2d88f74700512945ed9467d35c0ddbeac72cbf4c (diff)
downloademacs-039440c43e10fb3e73fa75ec18b3c5770019cf4e.tar.gz
emacs-039440c43e10fb3e73fa75ec18b3c5770019cf4e.zip
Move signal.h and stdio.h before config.h.
-rw-r--r--src/xterm.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/xterm.c b/src/xterm.c
index 0e57e96d671..acb141f2a39 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -27,6 +27,12 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
27 27
28#define NEW_SELECTIONS 28#define NEW_SELECTIONS
29 29
30/* On 4.3 these lose if they come after xterm.h. */
31/* On HP-UX 8.0 signal.h loses if it comes after config.h. */
32/* Putting these at the beginning seems to be standard for other .c files. */
33#include <stdio.h>
34#include <signal.h>
35
30#include "config.h" 36#include "config.h"
31 37
32#ifdef HAVE_X_WINDOWS 38#ifdef HAVE_X_WINDOWS
@@ -34,10 +40,6 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
34#include "lisp.h" 40#include "lisp.h"
35#include "blockinput.h" 41#include "blockinput.h"
36 42
37/* On 4.3 these lose if they come after xterm.h. */
38#include <stdio.h>
39#include <signal.h>
40
41/* This may include sys/types.h, and that somehow loses 43/* This may include sys/types.h, and that somehow loses
42 if this is not done before the other system files. */ 44 if this is not done before the other system files. */
43#include "xterm.h" 45#include "xterm.h"