diff options
author | Reyk Floeter <reyk@cvs.openbsd.org> | 2015-01-22 17:42:10 +0000 |
---|---|---|
committer | Reyk Floeter <reyk@cvs.openbsd.org> | 2015-01-22 17:42:10 +0000 |
commit | dc1408e1d4913455188e3bdc0400f7185e47b804 (patch) | |
tree | 79d42cd584950392284b9557426083f5e2a9ec80 /usr.sbin/relayd/parse.y | |
parent | cafa5bb29acce74dab3a0eeac84ff06ff6db2734 (diff) |
Clean up the relayd headers with help of include-what-you-use and some
manual review. Based on common practice, relayd.h now includes the
necessary headers for itself.
OK benno@
Diffstat (limited to 'usr.sbin/relayd/parse.y')
-rw-r--r-- | usr.sbin/relayd/parse.y | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/usr.sbin/relayd/parse.y b/usr.sbin/relayd/parse.y index be618dd2d20..9605c8d41dd 100644 --- a/usr.sbin/relayd/parse.y +++ b/usr.sbin/relayd/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.201 2015/01/21 21:50:33 deraadt Exp $ */ +/* $OpenBSD: parse.y,v 1.202 2015/01/22 17:42:09 reyk Exp $ */ /* * Copyright (c) 2007 - 2014 Reyk Floeter <reyk@openbsd.org> @@ -30,29 +30,30 @@ #include <sys/stat.h> #include <sys/queue.h> #include <sys/ioctl.h> +#include <sys/time.h> +#include <sys/tree.h> #include <netinet/in.h> #include <arpa/inet.h> #include <net/if.h> #include <net/pfvar.h> +#include <net/route.h> -#include <ctype.h> +#include <stdint.h> +#include <stdarg.h> +#include <stdio.h> #include <unistd.h> +#include <ctype.h> #include <err.h> +#include <endian.h> #include <errno.h> -#include <event.h> #include <limits.h> -#include <stdint.h> -#include <stdarg.h> -#include <stdio.h> #include <netdb.h> #include <string.h> #include <ifaddrs.h> #include <syslog.h> #include <md5.h> -#include <openssl/ssl.h> - #include "relayd.h" #include "http.h" #include "snmp.h" |