1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-05 09:14:03 +00:00

Fixed lint from cc -Wall.

Cleaned up includes.
This commit is contained in:
Bruce Evans 1995-10-22 18:43:26 +00:00
parent ccbc94648a
commit 3b4058284e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=11677

View File

@ -36,15 +36,11 @@ static char sccsid[] = "@(#)termios.c 8.2 (Berkeley) 2/21/94";
#endif /* LIBC_SCCS and not lint */
#include <sys/types.h>
#include <sys/ioctl.h>
#include <sys/tty.h>
#include <sys/time.h>
#define KERNEL /* XXX - FREAD and FWRITE ifdef'd KERNEL*/
#include <sys/fcntl.h>
#undef KERNEL
#include <sys/ioctl.h>
#include <sys/time.h>
#include <errno.h>
#include <stdio.h>
#include <termios.h>
#include <unistd.h>
@ -99,6 +95,7 @@ tcsetpgrp(fd, pgrp)
pid_t
tcgetpgrp(fd)
int fd;
{
int s;
@ -173,6 +170,7 @@ cfmakeraw(t)
t->c_cc[VTIME] = 0;
}
int
tcsendbreak(fd, len)
int fd, len;
{
@ -188,6 +186,7 @@ tcsendbreak(fd, len)
return (0);
}
int
tcdrain(fd)
int fd;
{
@ -195,6 +194,7 @@ tcdrain(fd)
return (ioctl(fd, TIOCDRAIN, 0));
}
int
tcflush(fd, which)
int fd, which;
{
@ -217,6 +217,7 @@ tcflush(fd, which)
return (ioctl(fd, TIOCFLUSH, &com));
}
int
tcflow(fd, action)
int fd, action;
{