summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorchl <chl@openbsd.org>2011-09-01 16:23:33 +0000
committerchl <chl@openbsd.org>2011-09-01 16:23:33 +0000
commitb92a8e4fd7855257269e9dc4ebe4f1807c442d0d (patch)
treee5c9e20e38e5789c3769dd6cd963f9c39b2c5a14
parent- if no filter is setup, do not overwrite the data line with filtmsg buffer (diff)
downloadwireguard-openbsd-b92a8e4fd7855257269e9dc4ebe4f1807c442d0d.tar.xz
wireguard-openbsd-b92a8e4fd7855257269e9dc4ebe4f1807c442d0d.zip
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>