diff options
author | Charles Longeau <chl@cvs.openbsd.org> | 2009-02-23 00:51:33 +0000 |
---|---|---|
committer | Charles Longeau <chl@cvs.openbsd.org> | 2009-02-23 00:51:33 +0000 |
commit | 5d144654091f1b56f8792202cbab8e69d832130d (patch) | |
tree | 67b27458a90cf20eba3fb777693d10db6d535524 /usr.sbin/smtpd/smtpd.c | |
parent | 37372828ca4ee232209ef728e767a9196552238d (diff) |
add missing headers needed by time()
ok jacekm@ gilles@
Diffstat (limited to 'usr.sbin/smtpd/smtpd.c')
-rw-r--r-- | usr.sbin/smtpd/smtpd.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/smtpd/smtpd.c b/usr.sbin/smtpd/smtpd.c index d3c8f253b4c..b4082167cb3 100644 --- a/usr.sbin/smtpd/smtpd.c +++ b/usr.sbin/smtpd/smtpd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: smtpd.c,v 1.31 2009/02/22 11:44:29 form Exp $ */ +/* $OpenBSD: smtpd.c,v 1.32 2009/02/23 00:51:32 chl Exp $ */ /* * Copyright (c) 2008 Gilles Chehade <gilles@openbsd.org> @@ -41,6 +41,7 @@ #include <stdlib.h> #include <string.h> #include <sysexits.h> +#include <time.h> #include <unistd.h> #include <keynote.h> |