diff options
author | eivind <eivind@FreeBSD.org> | 1997-12-22 13:46:08 +0000 |
---|---|---|
committer | eivind <eivind@FreeBSD.org> | 1997-12-22 13:46:08 +0000 |
commit | 6db96c372e997d15cc47d144750838de42c66dcd (patch) | |
tree | 963e4912b9e0c7ff0f892c306cf4e030f499a0ac /sbin/startslip | |
parent | b6fbb09bc14917f3e37e5a73d4ae0f783b2c2e13 (diff) | |
download | FreeBSD-src-6db96c372e997d15cc47d144750838de42c66dcd.zip FreeBSD-src-6db96c372e997d15cc47d144750838de42c66dcd.tar.gz |
Remove unused include files
Submitted by: bde
Diffstat (limited to 'sbin/startslip')
-rw-r--r-- | sbin/startslip/startslip.c | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/sbin/startslip/startslip.c b/sbin/startslip/startslip.c index 7a3633d..d2e252a 100644 --- a/sbin/startslip/startslip.c +++ b/sbin/startslip/startslip.c @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: startslip.c,v 1.25 1997/06/19 14:38:53 charnier Exp $ + * $Id: startslip.c,v 1.26 1997/12/21 15:35:22 eivind Exp $ */ #ifndef lint @@ -44,14 +44,13 @@ static char sccsid[] = "@(#)startslip.c 8.1 (Berkeley) 6/5/93"; #endif /* not lint */ #include <sys/types.h> -#include <sys/ioctl.h> -#include <sys/socket.h> #include <sys/time.h> +#include <err.h> #include <errno.h> #include <fcntl.h> +#include <libutil.h> #include <paths.h> -#include <netdb.h> #include <signal.h> #include <stdio.h> #include <stdlib.h> @@ -60,12 +59,7 @@ static char sccsid[] = "@(#)startslip.c 8.1 (Berkeley) 6/5/93"; #include <termios.h> #include <time.h> #include <unistd.h> -#include <libutil.h> -#include <err.h> -#include <netinet/in.h> -#include <net/if.h> -#include <net/if_var.h> #include <net/slip.h> #define DEFAULT_BAUD B9600 |