aboutsummaryrefslogtreecommitdiffstats
path: root/src/term.c
diff options
context:
space:
mode:
authorKaroly Lorentey2004-04-13 17:12:30 +0000
committerKaroly Lorentey2004-04-13 17:12:30 +0000
commit67ad74dfc55fafe210e8bf1dcae80d269d38ea4b (patch)
treef1c3d5478e402c6c842e6ea36e53360586da1590 /src/term.c
parent6858afd0c4acb9a214231f50aeab39cbcc5b3f17 (diff)
downloademacs-67ad74dfc55fafe210e8bf1dcae80d269d38ea4b.tar.gz
emacs-67ad74dfc55fafe210e8bf1dcae80d269d38ea4b.zip
Fix #include errors for FreeBSD (Frank Ruell)
src/term.c: Include termios.h, not termio.h (Reported by Frank Ruell <stoerte@dreamwarrior.net>). git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-135
Diffstat (limited to 'src/term.c')
-rw-r--r--src/term.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/term.c b/src/term.c
index f43b77158aa..aeccdf285cb 100644
--- a/src/term.c
+++ b/src/term.c
@@ -29,7 +29,10 @@ Boston, MA 02111-1307, USA. */
29#include <sys/file.h> 29#include <sys/file.h>
30 30
31#include <unistd.h> /* For isatty. */ 31#include <unistd.h> /* For isatty. */
32#include <termio.h> /* For TIOCNOTTY. */ 32
33#if HAVE_TERMIOS_H
34#include <termios.h> /* For TIOCNOTTY. */
35#endif
33 36
34#include <signal.h> 37#include <signal.h>
35 38