diff options
author | 2012-12-04 02:36:38 +0000 | |
---|---|---|
committer | 2012-12-04 02:36:38 +0000 | |
commit | b6722e3fa327823fbe15cd3e2182eecba7ebdaf5 (patch) | |
tree | 2b01ed8eb43578fef1769179b13ed756cdeef6ef | |
parent | remove sunos backwards compat (diff) | |
download | wireguard-openbsd-b6722e3fa327823fbe15cd3e2182eecba7ebdaf5.tar.xz wireguard-openbsd-b6722e3fa327823fbe15cd3e2182eecba7ebdaf5.zip |
rather than a mishmash of headers, this only needs <stdint.h>
with guenther
-rw-r--r-- | libexec/spamd/sync.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libexec/spamd/sync.c b/libexec/spamd/sync.c index 98b87361df7..9be90073659 100644 --- a/libexec/spamd/sync.c +++ b/libexec/spamd/sync.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sync.c,v 1.8 2009/04/20 17:42:21 beck Exp $ */ +/* $OpenBSD: sync.c,v 1.9 2012/12/04 02:36:38 deraadt Exp $ */ /* * Copyright (c) 2006, 2007 Reyk Floeter <reyk@openbsd.org> @@ -16,8 +16,6 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -#include <sys/param.h> -#include <sys/stdint.h> #include <sys/file.h> #include <sys/wait.h> #include <sys/socket.h> @@ -40,6 +38,7 @@ #include <unistd.h> #include <sha1.h> #include <syslog.h> +#include <stdint.h> #include <netdb.h> |