diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-06-15 03:45:54 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-06-15 03:45:54 +0000 |
commit | 6f1d1e478e1f1a90ddf0cd9a6dd82a5e5fbff028 (patch) | |
tree | 7b55ea25f1a1d03501a72177c3811b8a289a7b54 /src/hftctl.c | |
parent | 3964b9a75d5a7e3c721fb7b4dbc924791c6b5dab (diff) | |
download | emacs-6f1d1e478e1f1a90ddf0cd9a6dd82a5e5fbff028.tar.gz emacs-6f1d1e478e1f1a90ddf0cd9a6dd82a5e5fbff028.tar.bz2 emacs-6f1d1e478e1f1a90ddf0cd9a6dd82a5e5fbff028.zip |
Put sys/signal.h and errno.h first, then config.h.
Diffstat (limited to 'src/hftctl.c')
-rw-r--r-- | src/hftctl.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/hftctl.c b/src/hftctl.c index 17a2c8c7ee9..5fe816abbb5 100644 --- a/src/hftctl.c +++ b/src/hftctl.c @@ -41,13 +41,15 @@ /* */ /***************************************************************/ +#include <sys/signal.h> +#include <errno.h> + +#include <config.h> #include <stdio.h> #include <fcntl.h> -#include <errno.h> #include <setjmp.h> #include <sys/ioctl.h> -#include <sys/signal.h> #include <sys/devinfo.h> #include <termios.h> #include <termio.h> @@ -56,8 +58,6 @@ #include <sys/tty.h> /* #include <sys/pty.h> */ -#include <config.h> - #define REMOTE 0x01 #undef ioctl |