diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2004-02-24 13:08:27 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2004-02-24 13:08:27 +0000 |
commit | 54a65b5db0fbff3fb634d539917efcbfb73eb298 (patch) | |
tree | 4e549492d1d06fcb1618e4813e867819e2062309 /sbin/dhclient/dhcpd.h | |
parent | d5ba17f4cc03c8b1adcd764730d2074392f6588f (diff) |
cut more crap - no binary change
Diffstat (limited to 'sbin/dhclient/dhcpd.h')
-rw-r--r-- | sbin/dhclient/dhcpd.h | 33 |
1 files changed, 25 insertions, 8 deletions
diff --git a/sbin/dhclient/dhcpd.h b/sbin/dhclient/dhcpd.h index 95a4dddf65f..6fdda48ca1d 100644 --- a/sbin/dhclient/dhcpd.h +++ b/sbin/dhclient/dhcpd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: dhcpd.h,v 1.11 2004/02/24 12:41:28 henning Exp $ */ +/* $OpenBSD: dhcpd.h,v 1.12 2004/02/24 13:08:26 henning Exp $ */ /* Definitions for dhcpd... */ @@ -41,21 +41,38 @@ */ #include <sys/types.h> -#include <netinet/in.h> + #include <sys/socket.h> +#include <sys/sockio.h> +#include <sys/stat.h> +#include <sys/time.h> #include <sys/un.h> +#include <sys/wait.h> + +#include <net/if.h> +#include <net/if_dl.h> +#include <net/route.h> + +#include <netinet/in.h> #include <arpa/inet.h> -#include <netdb.h> + +#include <ctype.h> +#include <errno.h> #include <fcntl.h> -#include <stdio.h> +#include <limits.h> +#include <netdb.h> +#include <paths.h> #include <unistd.h> -#include <string.h> +#include <setjmp.h> +#include <signal.h> +#include <stdarg.h> +#include <stdio.h> #include <stdlib.h> -#include <sys/stat.h> -#include <ctype.h> +#include <string.h> +#include <syslog.h> #include <time.h> +#include <unistd.h> -#include "osdep.h" #include "dhcp.h" #include "tree.h" #include "hash.h" |