aboutsummaryrefslogtreecommitdiff
path: root/sys/net/if_ppp.c
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1997-03-24 11:52:29 +0000
committerBruce Evans <bde@FreeBSD.org>1997-03-24 11:52:29 +0000
commit20982410542a3d817a38ea6175574a5dddabc969 (patch)
tree91489a177bb731ba6019707934967d4a7c5e98a4 /sys/net/if_ppp.c
parent71455815cc0dc3eb18d703290a133fd34778fcfb (diff)
downloadsrc-20982410542a3d817a38ea6175574a5dddabc969.tar.gz
src-20982410542a3d817a38ea6175574a5dddabc969.zip
Don't include <sys/ioctl.h> in the kernel. Stage 4: include
<sys/ttycom.h> and sometimes <sys/filio.h> instead of <sys/ioctl.h> in miscellaneous files. Most of these files have nothing to do with ttys but need to include <sys/ttycom.h> to get the definitions of TIOC[SG]PGRP which are (ab)used to convert F[SG]ETOWN fcntls into ioctls.
Notes
Notes: svn path=/head/; revision=24206
Diffstat (limited to 'sys/net/if_ppp.c')
-rw-r--r--sys/net/if_ppp.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/net/if_ppp.c b/sys/net/if_ppp.c
index fe4479fdc8fd..2abdf2d4f964 100644
--- a/sys/net/if_ppp.c
+++ b/sys/net/if_ppp.c
@@ -69,7 +69,7 @@
* Paul Mackerras (paulus@cs.anu.edu.au).
*/
-/* $Id$ */
+/* $Id: if_ppp.c,v 1.39 1997/02/22 09:41:03 peter Exp $ */
/* from if_ppp.c,v 1.5 1995/08/16 01:36:38 paulus Exp */
/* from if_sl.c,v 1.11 84/10/04 12:54:47 rick Exp */
@@ -84,7 +84,8 @@
#include <sys/proc.h>
#include <sys/mbuf.h>
#include <sys/socket.h>
-#include <sys/ioctl.h>
+#include <sys/filio.h>
+#include <sys/sockio.h>
#include <sys/kernel.h>
#include <net/if.h>