diff options
author | 2006-11-29 12:09:02 +0000 | |
---|---|---|
committer | 2006-11-29 12:09:02 +0000 | |
commit | 9e2ae4a6a6596e765c1542a2c29889411c842c6a (patch) | |
tree | 47a0611c0c0b38040c614e361d36e7830eb352d1 | |
parent | Remove an unused variable. (diff) | |
download | wireguard-openbsd-9e2ae4a6a6596e765c1542a2c29889411c842c6a.tar.xz wireguard-openbsd-9e2ae4a6a6596e765c1542a2c29889411c842c6a.zip |
Forgot this in my last committ: Remove not-needed header files.
Also from Kevin Steves.
-rw-r--r-- | sbin/nmeaattach/nmeaattach.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/sbin/nmeaattach/nmeaattach.c b/sbin/nmeaattach/nmeaattach.c index 3c6c9866360..7dacf1e44df 100644 --- a/sbin/nmeaattach/nmeaattach.c +++ b/sbin/nmeaattach/nmeaattach.c @@ -1,4 +1,4 @@ -/* $OpenBSD: nmeaattach.c,v 1.5 2006/11/29 12:05:32 mbalmer Exp $ */ +/* $OpenBSD: nmeaattach.c,v 1.6 2006/11/29 12:09:02 mbalmer Exp $ */ /* * Copyright (c) 1988, 1993 * The Regents of the University of California. All rights reserved. @@ -32,25 +32,16 @@ * SUCH DAMAGE. */ -#include <sys/param.h> -#include <sys/socket.h> -#include <sys/types.h> #include <sys/ioctl.h> #include <sys/ttycom.h> -#include <net/if.h> -#include <netinet/in.h> - #include <err.h> -#include <errno.h> #include <fcntl.h> -#include <netdb.h> #include <paths.h> #include <signal.h> #include <stdio.h> #include <stdlib.h> #include <string.h> -#include <syslog.h> #include <termios.h> #include <unistd.h> |