Make ppp use <termios.h>, not <sys/tty.h>.

ppp's physical.c is filled with calls to termios. For some reason, it
includes <sys/tty.h>, not <termios.h>. Even though this works with the
current version of FreeBSD, we'd better follow the standards.

Approved by:	philip (mentor)
This commit is contained in:
Ed Schouten 2008-06-05 17:46:32 +00:00
parent 22e9c72afd
commit 0fbccea207
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=179568

View File

@ -37,9 +37,9 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/tty.h> /* TIOCOUTQ */
#include <sys/uio.h>
#include <sysexits.h>
#include <termios.h>
#include <time.h>
#include <unistd.h>
#include <utmp.h>