# HG changeset patch # User Karoly Lorentey # Date 1081876350 0 # Node ID b448166f56645fd1aad69ea8d9510c7d6efacbfb # Parent 8e5779acd195708f4a2bf73bebc29c98c131449e Fix #include errors for FreeBSD (Frank Ruell) src/term.c: Include termios.h, not termio.h (Reported by Frank Ruell ). git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-135 diff -r 8e5779acd195 -r b448166f5664 src/term.c --- a/src/term.c Sat Apr 10 23:06:09 2004 +0000 +++ b/src/term.c Tue Apr 13 17:12:30 2004 +0000 @@ -29,7 +29,10 @@ #include #include /* For isatty. */ -#include /* For TIOCNOTTY. */ + +#if HAVE_TERMIOS_H +#include /* For TIOCNOTTY. */ +#endif #include