diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2005-03-31 12:14:02 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2005-03-31 12:14:02 +0000 |
commit | 7b826042de6111e722948c74b5df71197d8730d9 (patch) | |
tree | 5694af075c020b53cabf59a925659075186f665c /usr.sbin/ntpd/log.c | |
parent | 95beec2dbd70d22bd92ae4b5d68023a9e4a7f3ed (diff) |
zap includes, Alexander von Gernler <grunk@pestilenz.org>
Diffstat (limited to 'usr.sbin/ntpd/log.c')
-rw-r--r-- | usr.sbin/ntpd/log.c | 10 |
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 *, ...); |