diff options
author | Eric Faurot <eric@cvs.openbsd.org> | 2021-06-14 17:58:17 +0000 |
---|---|---|
committer | Eric Faurot <eric@cvs.openbsd.org> | 2021-06-14 17:58:17 +0000 |
commit | 8de7ad015b77fe4ff551795e7ea643c458f627bc (patch) | |
tree | cf41ed9806c58b5c9b67449cd01d77a9191d811f /usr.sbin/smtpd/waitq.c | |
parent | e5f94eb9c332c6d95c6a4484fbb382690534256b (diff) |
add required headers for smtpd.h and remove unnecessary ones in other files.
ok jung@
Diffstat (limited to 'usr.sbin/smtpd/waitq.c')
-rw-r--r-- | usr.sbin/smtpd/waitq.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/usr.sbin/smtpd/waitq.c b/usr.sbin/smtpd/waitq.c index dc459372016..e75909e0b59 100644 --- a/usr.sbin/smtpd/waitq.c +++ b/usr.sbin/smtpd/waitq.c @@ -1,4 +1,4 @@ -/* $OpenBSD: waitq.c,v 1.6 2018/05/31 21:06:12 gilles Exp $ */ +/* $OpenBSD: waitq.c,v 1.7 2021/06/14 17:58:16 eric Exp $ */ /* * Copyright (c) 2012 Eric Faurot <eric@openbsd.org> @@ -16,16 +16,7 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -#include <sys/types.h> -#include <sys/socket.h> -#include <sys/queue.h> -#include <sys/tree.h> -#include <sys/uio.h> - -#include <imsg.h> -#include <stdio.h> #include <stdlib.h> -#include <limits.h> #include "smtpd.h" |