From 039440c43e10fb3e73fa75ec18b3c5770019cf4e Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sun, 23 May 1993 18:09:41 +0000 Subject: [PATCH] Move signal.h and stdio.h before config.h. --- src/xterm.c | 10 ++++++---- 1 file 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. */ #define NEW_SELECTIONS +/* On 4.3 these lose if they come after xterm.h. */ +/* On HP-UX 8.0 signal.h loses if it comes after config.h. */ +/* Putting these at the beginning seems to be standard for other .c files. */ +#include +#include + #include "config.h" #ifdef HAVE_X_WINDOWS @@ -34,10 +40,6 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "lisp.h" #include "blockinput.h" -/* On 4.3 these lose if they come after xterm.h. */ -#include -#include - /* This may include sys/types.h, and that somehow loses if this is not done before the other system files. */ #include "xterm.h"