diff options
author | 2013-12-20 00:31:12 +0000 | |
---|---|---|
committer | 2013-12-20 00:31:12 +0000 | |
commit | 6007504bfd9bf631eb326213edc07a5b7ec04c1c (patch) | |
tree | f02795061c92f5e801352cf1c6fa289cf991558c | |
parent | oh sorry, I forgot two #ifdef (diff) | |
download | wireguard-openbsd-6007504bfd9bf631eb326213edc07a5b7ec04c1c.tar.xz wireguard-openbsd-6007504bfd9bf631eb326213edc07a5b7ec04c1c.zip |
delete 4 includes we do not need
-rw-r--r-- | usr.sbin/ypbind/ypbind.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/usr.sbin/ypbind/ypbind.c b/usr.sbin/ypbind/ypbind.c index 122530fa124..f858febfb61 100644 --- a/usr.sbin/ypbind/ypbind.c +++ b/usr.sbin/ypbind/ypbind.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ypbind.c,v 1.60 2013/11/24 01:06:19 deraadt Exp $ */ +/* $OpenBSD: ypbind.c,v 1.61 2013/12/20 00:31:12 deraadt Exp $ */ /* * Copyright (c) 1992, 1993, 1996, 1997, 1998 Theo de Raadt <deraadt@openbsd.org> @@ -26,26 +26,22 @@ * SUCH DAMAGE. */ -#include <sys/param.h> #include <sys/types.h> -#include <sys/ioctl.h> #include <sys/socket.h> #include <sys/stat.h> #include <sys/file.h> #include <sys/fcntl.h> #include <sys/uio.h> #include <sys/syslog.h> +#include <net/if.h> #include <stdio.h> #include <stdlib.h> #include <errno.h> -#include <ctype.h> -#include <dirent.h> #include <netdb.h> #include <string.h> #include <dirent.h> #include <rpc/rpc.h> #include <rpc/xdr.h> -#include <net/if.h> #include <arpa/inet.h> #include <rpc/pmap_clnt.h> #include <rpc/pmap_prot.h> |