summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhenning <henning@openbsd.org>2005-03-31 12:14:01 +0000
committerhenning <henning@openbsd.org>2005-03-31 12:14:01 +0000
commit08a1541b9b4c601302a1e5070ba271bf042314f8 (patch)
tree65d8326bdb40d8b551e8362d572b83e5f3e25f11
parentzap some includes we don't need, Alexander von Gernler <grunk@pestilenz.org> (diff)
downloadwireguard-openbsd-08a1541b9b4c601302a1e5070ba271bf042314f8.tar.xz
wireguard-openbsd-08a1541b9b4c601302a1e5070ba271bf042314f8.zip
zap includes, Alexander von Gernler <grunk@pestilenz.org>
-rw-r--r--usr.sbin/ntpd/log.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/usr.sbin/ntpd/log.c b/usr.sbin/ntpd/log.c
index 4445972f8b8..59f69282fee 100644
--- a/usr.sbin/ntpd/log.c
+++ b/usr.sbin/ntpd/log.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: log.c,v 1.6 2004/07/12 09:22:38 dtucker Exp $ */
+/* $OpenBSD: log.c,v 1.7 2005/03/31 12:14:01 henning Exp $ */
/*
* Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org>
@@ -16,11 +16,6 @@
* OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-#include <sys/types.h>
-#include <sys/socket.h>
-#include <netinet/in.h>
-#include <arpa/inet.h>
-
#include <errno.h>
#include <stdarg.h>
#include <stdio.h>
@@ -28,11 +23,10 @@
#include <string.h>
#include <syslog.h>
#include <time.h>
-#include <unistd.h>
#include "ntpd.h"
-int debug;
+int debug;
void logit(int, const char *, ...);