diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2014-08-04 06:35:32 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2014-08-04 06:35:32 +0000 |
commit | e1816f7ad1b4ace088e458217aeafde51a0f7ce3 (patch) | |
tree | 7085fdbe793296c899ce06721550c1f156dd4444 /usr.sbin/httpd/control.c | |
parent | ede230de716454e86a5d5de7d85503cc4cd84ca9 (diff) |
no need for param.h
Diffstat (limited to 'usr.sbin/httpd/control.c')
-rw-r--r-- | usr.sbin/httpd/control.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/httpd/control.c b/usr.sbin/httpd/control.c index 3a8552afc88..e68d3b4868b 100644 --- a/usr.sbin/httpd/control.c +++ b/usr.sbin/httpd/control.c @@ -1,4 +1,4 @@ -/* $OpenBSD: control.c,v 1.1 2014/07/12 23:34:54 reyk Exp $ */ +/* $OpenBSD: control.c,v 1.2 2014/08/04 06:35:31 deraadt Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -16,8 +16,8 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ +#include <sys/types.h> #include <sys/queue.h> -#include <sys/param.h> #include <sys/stat.h> #include <sys/socket.h> #include <sys/un.h> |