diff options
| author | Richard M. Stallman | 1994-04-12 03:25:32 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-04-12 03:25:32 +0000 |
| commit | 92ea836df147a9418705d3b8ee14bef25691740a (patch) | |
| tree | 4ff1161b54958a88fd2b6de8e49df86ac89f8f27 /src | |
| parent | 472e83febc694e6a3be338ff28c0fa2074b2b0cc (diff) | |
| download | emacs-92ea836df147a9418705d3b8ee14bef25691740a.tar.gz emacs-92ea836df147a9418705d3b8ee14bef25691740a.zip | |
Check for INCLUDED_FCNTL already defined.
Diffstat (limited to 'src')
| -rw-r--r-- | src/systty.h | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/src/systty.h b/src/systty.h index 5027633ec9b..2ef4d0ee0ad 100644 --- a/src/systty.h +++ b/src/systty.h | |||
| @@ -53,14 +53,16 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |||
| 53 | #ifndef NO_TERMIO | 53 | #ifndef NO_TERMIO |
| 54 | #include <termio.h> | 54 | #include <termio.h> |
| 55 | #endif /* not NO_TERMIO */ | 55 | #endif /* not NO_TERMIO */ |
| 56 | #ifndef INCLUDED_FCNTL | ||
| 56 | #define INCLUDED_FCNTL | 57 | #define INCLUDED_FCNTL |
| 57 | #include <fcntl.h> | 58 | #include <fcntl.h> |
| 58 | #else | 59 | #endif |
| 60 | #else /* not HAVE_TERMIO */ | ||
| 59 | #ifdef HAVE_TERMIOS | 61 | #ifdef HAVE_TERMIOS |
| 60 | #if defined(_AIX) && defined(_I386) | 62 | #if defined(_AIX) && defined(_I386) |
| 61 | #include <termios.h> /* termios.h needs to be before termio.h */ | 63 | #include <termios.h> /* termios.h needs to be before termio.h */ |
| 62 | #include <termio.h> | 64 | #include <termio.h> |
| 63 | #else | 65 | #else /* not HAVE_TERMIOS */ |
| 64 | #ifndef NO_TERMIO | 66 | #ifndef NO_TERMIO |
| 65 | #include <termio.h> | 67 | #include <termio.h> |
| 66 | #endif | 68 | #endif |
| @@ -85,15 +87,9 @@ static struct iosb | |||
| 85 | 87 | ||
| 86 | extern int waiting_for_ast; | 88 | extern int waiting_for_ast; |
| 87 | extern int stop_input; | 89 | extern int stop_input; |
| 88 | #if 0 /* VAX C doeasn't understand initializing declarations */ | ||
| 89 | extern int input_ef = 0; | ||
| 90 | extern int timer_ef = 0; | ||
| 91 | extern int process_ef = 0; | ||
| 92 | #else | ||
| 93 | extern int input_ef; | 90 | extern int input_ef; |
| 94 | extern int timer_ef; | 91 | extern int timer_ef; |
| 95 | extern int process_ef; | 92 | extern int process_ef; |
| 96 | #endif | ||
| 97 | extern int input_eflist; | 93 | extern int input_eflist; |
| 98 | extern int timer_eflist; | 94 | extern int timer_eflist; |
| 99 | 95 | ||