diff options
| -rw-r--r-- | src/xterm.c | 10 |
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" |