aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1994-04-12 03:25:32 +0000
committerRichard M. Stallman1994-04-12 03:25:32 +0000
commit92ea836df147a9418705d3b8ee14bef25691740a (patch)
tree4ff1161b54958a88fd2b6de8e49df86ac89f8f27 /src
parent472e83febc694e6a3be338ff28c0fa2074b2b0cc (diff)
downloademacs-92ea836df147a9418705d3b8ee14bef25691740a.tar.gz
emacs-92ea836df147a9418705d3b8ee14bef25691740a.zip
Check for INCLUDED_FCNTL already defined.
Diffstat (limited to 'src')
-rw-r--r--src/systty.h12
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
86extern int waiting_for_ast; 88extern int waiting_for_ast;
87extern int stop_input; 89extern int stop_input;
88#if 0 /* VAX C doeasn't understand initializing declarations */
89extern int input_ef = 0;
90extern int timer_ef = 0;
91extern int process_ef = 0;
92#else
93extern int input_ef; 90extern int input_ef;
94extern int timer_ef; 91extern int timer_ef;
95extern int process_ef; 92extern int process_ef;
96#endif
97extern int input_eflist; 93extern int input_eflist;
98extern int timer_eflist; 94extern int timer_eflist;
99 95