diff options
author | bde <bde@FreeBSD.org> | 2002-02-25 05:16:22 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 2002-02-25 05:16:22 +0000 |
commit | 1108cb57449fd6a8db6c3c9e2577b40df447116f (patch) | |
tree | 11446946728895f82e68f74c8454a70feb8119b4 /usr.bin/mail | |
parent | 6449432456685e436c43be0f614e5a608a3023ac (diff) | |
download | FreeBSD-src-1108cb57449fd6a8db6c3c9e2577b40df447116f.zip FreeBSD-src-1108cb57449fd6a8db6c3c9e2577b40df447116f.tar.gz |
#include <sys/time.h> instead of depending on namespace pollution in
<sys/stat.h> for the declaration of struct timeval. Intentionally
don't follow the local style of polluting the local headers.
Diffstat (limited to 'usr.bin/mail')
-rw-r--r-- | usr.bin/mail/aux.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/usr.bin/mail/aux.c b/usr.bin/mail/aux.c index 2f735b1..866b91b 100644 --- a/usr.bin/mail/aux.c +++ b/usr.bin/mail/aux.c @@ -39,6 +39,8 @@ static const char rcsid[] = "$FreeBSD$"; #endif /* not lint */ +#include <sys/time.h> + #include "rcv.h" #include "extern.h" |