summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Longeau <chl@cvs.openbsd.org>2012-04-16 13:32:17 +0000
committerCharles Longeau <chl@cvs.openbsd.org>2012-04-16 13:32:17 +0000
commit74f5554958854b96ce7781b95e769e9916b77cf4 (patch)
treeb8bf1abc7aa1402d7a734395917270fd72d8c024
parent40a5a32781ac6ed44bac6e5a1b36f20c0ce83824 (diff)
add missing header needed by str* and mem* functions
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 e4a135a749b..cf6a1d83f5f 100644
--- a/usr.sbin/smtpd/parse.y
+++ b/usr.sbin/smtpd/parse.y
@@ -1,4 +1,4 @@
-/* $OpenBSD: parse.y,v 1.84 2011/12/13 21:44:47 gilles Exp $ */
+/* $OpenBSD: parse.y,v 1.85 2012/04/16 13:32:16 chl Exp $ */
/*
* Copyright (c) 2008 Gilles Chehade <gilles@openbsd.org>
@@ -46,6 +46,7 @@
#include <pwd.h>
#include <stdio.h>
#include <stdlib.h>
+#include <string.h>
#include <unistd.h>
#include <util.h>