diff options
| author | Karoly Lorentey | 2004-04-13 17:12:30 +0000 |
|---|---|---|
| committer | Karoly Lorentey | 2004-04-13 17:12:30 +0000 |
| commit | 67ad74dfc55fafe210e8bf1dcae80d269d38ea4b (patch) | |
| tree | f1c3d5478e402c6c842e6ea36e53360586da1590 /src/term.c | |
| parent | 6858afd0c4acb9a214231f50aeab39cbcc5b3f17 (diff) | |
| download | emacs-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.c | 5 |
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 | ||