diff options
author | Kevin Steves <stevesk@cvs.openbsd.org> | 2006-11-22 19:10:40 +0000 |
---|---|---|
committer | Kevin Steves <stevesk@cvs.openbsd.org> | 2006-11-22 19:10:40 +0000 |
commit | 4ad0ea8bb2ffdca446b54762a396a2112d66795d (patch) | |
tree | c465ed5375af30e846eb960b91913251afe922d6 /usr.sbin | |
parent | a9a1f643dd1cfcc12d8e25f1bfeb9dafc0bc9d53 (diff) |
small header cleanup:
remove uneeded header
use <foo.h> not "foo.h" for system include
no binary change; ok henning@
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/dhcpd/dhcpd.c | 5 | ||||
-rw-r--r-- | usr.sbin/dhcpd/dhcpd.h | 3 |
2 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/dhcpd/dhcpd.c b/usr.sbin/dhcpd/dhcpd.c index be6d433f52a..bfe34f8fe1d 100644 --- a/usr.sbin/dhcpd/dhcpd.c +++ b/usr.sbin/dhcpd/dhcpd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: dhcpd.c,v 1.29 2006/06/14 20:19:20 jmc Exp $ */ +/* $OpenBSD: dhcpd.c,v 1.30 2006/11/22 19:10:39 stevesk Exp $ */ /* * Copyright (c) 2004 Henning Brauer <henning@cvs.openbsd.org> @@ -40,7 +40,8 @@ */ #include "dhcpd.h" -#include "pwd.h" + +#include <pwd.h> void usage(void); diff --git a/usr.sbin/dhcpd/dhcpd.h b/usr.sbin/dhcpd/dhcpd.h index cab368040d6..9dd1ab69eb4 100644 --- a/usr.sbin/dhcpd/dhcpd.h +++ b/usr.sbin/dhcpd/dhcpd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: dhcpd.h,v 1.24 2006/11/21 16:26:56 stevesk Exp $ */ +/* $OpenBSD: dhcpd.h,v 1.25 2006/11/22 19:10:39 stevesk Exp $ */ /* * Copyright (c) 1995, 1996, 1997, 1998, 1999 @@ -59,7 +59,6 @@ #include <limits.h> #include <netdb.h> #include <paths.h> -#include <setjmp.h> #include <signal.h> #include <stdarg.h> #include <stdio.h> |