summaryrefslogtreecommitdiff
path: root/usr.sbin/smtpd/makemap.c
diff options
context:
space:
mode:
authorEric Faurot <eric@cvs.openbsd.org>2021-06-14 17:58:17 +0000
committerEric Faurot <eric@cvs.openbsd.org>2021-06-14 17:58:17 +0000
commit8de7ad015b77fe4ff551795e7ea643c458f627bc (patch)
treecf41ed9806c58b5c9b67449cd01d77a9191d811f /usr.sbin/smtpd/makemap.c
parente5f94eb9c332c6d95c6a4484fbb382690534256b (diff)
add required headers for smtpd.h and remove unnecessary ones in other files.
ok jung@
Diffstat (limited to 'usr.sbin/smtpd/makemap.c')
-rw-r--r--usr.sbin/smtpd/makemap.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/usr.sbin/smtpd/makemap.c b/usr.sbin/smtpd/makemap.c
index e2a9e465b13..2144e83959e 100644
--- a/usr.sbin/smtpd/makemap.c
+++ b/usr.sbin/smtpd/makemap.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: makemap.c,v 1.74 2021/01/27 07:20:27 deraadt Exp $ */
+/* $OpenBSD: makemap.c,v 1.75 2021/06/14 17:58:15 eric Exp $ */
/*
* Copyright (c) 2008 Gilles Chehade <gilles@poolp.org>
@@ -17,25 +17,17 @@
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-#include <sys/types.h>
#include <sys/stat.h>
-#include <sys/tree.h>
-#include <sys/queue.h>
-#include <sys/socket.h>
#include <ctype.h>
#include <db.h>
#include <err.h>
#include <errno.h>
-#include <event.h>
#include <fcntl.h>
-#include <imsg.h>
-#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <syslog.h>
#include <unistd.h>
-#include <limits.h>
#include <util.h>
#include "smtpd.h"