diff options
author | Charles Longeau <chl@cvs.openbsd.org> | 2011-08-26 14:39:48 +0000 |
---|---|---|
committer | Charles Longeau <chl@cvs.openbsd.org> | 2011-08-26 14:39:48 +0000 |
commit | 6677791a7a51ab93b380bb12b02b1e324d9469ab (patch) | |
tree | 460d03c06503c2f5979062ec55475e32253c9b1d /usr.sbin/smtpd/mta.c | |
parent | 60a7baf958763adc2c2565dc6839001a54ac29a1 (diff) |
add missing header needed by time()
ok gilles@
Diffstat (limited to 'usr.sbin/smtpd/mta.c')
-rw-r--r-- | usr.sbin/smtpd/mta.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/smtpd/mta.c b/usr.sbin/smtpd/mta.c index 7959cc09407..fa52b3893b2 100644 --- a/usr.sbin/smtpd/mta.c +++ b/usr.sbin/smtpd/mta.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mta.c,v 1.110 2011/07/20 10:22:54 eric Exp $ */ +/* $OpenBSD: mta.c,v 1.111 2011/08/26 14:39:47 chl Exp $ */ /* * Copyright (c) 2008 Pierre-Yves Ritschard <pyr@openbsd.org> @@ -32,6 +32,7 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> +#include <time.h> #include <unistd.h> #include "smtpd.h" |