summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Longeau <chl@cvs.openbsd.org>2011-09-01 16:23:34 +0000
committerCharles Longeau <chl@cvs.openbsd.org>2011-09-01 16:23:34 +0000
commitaa843864e79d5d0d29cd8a16ed547d2719623e5b (patch)
treefa1bec8141584886254ec838a6f2af5c8aeeeb19
parent5988fba4ce95e60f27b85ad8cff7130dc1e0ebfb (diff)
add missing header needed by bsearch()
ok gilles@
-rw-r--r--usr.sbin/smtpd/parse.y3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/smtpd/parse.y b/usr.sbin/smtpd/parse.y
index cbd3cb9056d..5846b4e9f3f 100644
--- a/usr.sbin/smtpd/parse.y
+++ b/usr.sbin/smtpd/parse.y
@@ -1,4 +1,4 @@
-/* $OpenBSD: parse.y,v 1.79 2011/09/01 09:42:15 chl Exp $ */
+/* $OpenBSD: parse.y,v 1.80 2011/09/01 16:23:33 chl Exp $ */
/*
* Copyright (c) 2008 Gilles Chehade <gilles@openbsd.org>
@@ -44,6 +44,7 @@
#include <paths.h>
#include <pwd.h>
#include <stdio.h>
+#include <stdlib.h>
#include <unistd.h>
#include <util.h>