diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-07-13 01:05:34 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-07-13 01:05:34 +0000 |
commit | ea61cce40bc6edb215f4bfc98acba73dc711159e (patch) | |
tree | 85ef17873662122d9a44926aeeb10a81c3784cdd /daemon.c | |
parent | ee967d2ca5c4669ba1277dd6e1329f7e5d043cd8 (diff) | |
download | fetchmail-ea61cce40bc6edb215f4bfc98acba73dc711159e.tar.gz fetchmail-ea61cce40bc6edb215f4bfc98acba73dc711159e.tar.bz2 fetchmail-ea61cce40bc6edb215f4bfc98acba73dc711159e.zip |
Make sure we never have to include sgtty.h.
svn path=/trunk/; revision=1170
Diffstat (limited to 'daemon.c')
-rw-r--r-- | daemon.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -31,6 +31,10 @@ #include <unix.h> #endif +#if defined(HAVE_TERMIOS_H) +# include <termios.h> /* for TIOCNOTTY under Linux */ +#endif + #if !defined(TIOCNOTTY) && defined(HAVE_SGTTY_H) # include <sgtty.h> /* for TIOCNOTTY under NEXTSTEP */ #endif |