diff options
author | joerg <joerg@FreeBSD.org> | 2001-12-27 22:40:01 +0000 |
---|---|---|
committer | joerg <joerg@FreeBSD.org> | 2001-12-27 22:40:01 +0000 |
commit | d10f66f0eb8bb84df0486c337af7d386109cb27d (patch) | |
tree | 144c9f23f0718a874e471736587295ba912588ed /sbin | |
parent | d18dbbbe9a6140b0e0e68bd24def044457afccda (diff) | |
download | FreeBSD-src-d10f66f0eb8bb84df0486c337af7d386109cb27d.zip FreeBSD-src-d10f66f0eb8bb84df0486c337af7d386109cb27d.tar.gz |
Clean up half a dozen of header files that are no longer needed now that
we use struct sppp_parms instead of struct sppp for userland programs.
MFC after: 1 month
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/spppcontrol/spppcontrol.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/sbin/spppcontrol/spppcontrol.c b/sbin/spppcontrol/spppcontrol.c index 111ac0d..2d20570 100644 --- a/sbin/spppcontrol/spppcontrol.c +++ b/sbin/spppcontrol/spppcontrol.c @@ -29,18 +29,11 @@ static const char rcsid[] = "$FreeBSD$"; #endif /* not lint */ -#include <sys/param.h> -#include <sys/callout.h> +#include <sys/types.h> #include <sys/ioctl.h> -#include <sys/mbuf.h> #include <sys/socket.h> #include <net/if.h> -#include <net/if_var.h> -#include <netinet/in.h> -#include <netinet/in_systm.h> -#include <netinet/ip.h> -#include <net/slcompress.h> #include <net/if_sppp.h> #include <err.h> |