1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-07 09:20:11 +00:00

Get tty ioctl numbers by #including <sys/ttycom.h> instead of

<sys/tty.h>.  Don't #include <sys/fcntl.h> (the select -> poll
changes removed all dependencies on it).
This commit is contained in:
Bruce Evans 1997-11-18 12:59:09 +00:00
parent b7f5d5b54d
commit 1fe5398ce7
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=31262

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)tty_tty.c 8.2 (Berkeley) 9/23/93
* $Id: tty_tty.c,v 1.18 1997/09/14 02:40:46 peter Exp $
* $Id: tty_tty.c,v 1.19 1997/09/16 11:43:35 bde Exp $
*/
/*
@ -41,9 +41,8 @@
#include <sys/systm.h>
#include <sys/conf.h>
#include <sys/proc.h>
#include <sys/tty.h>
#include <sys/ttycom.h>
#include <sys/vnode.h>
#include <sys/fcntl.h>
#include <sys/kernel.h>
#ifdef DEVFS
#include <sys/devfsext.h>