diff options
author | wollman <wollman@FreeBSD.org> | 2000-10-10 01:50:26 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 2000-10-10 01:50:26 +0000 |
commit | c5c43ce91fc476c67d622b0ca48e8e25ca653ff6 (patch) | |
tree | 6a86f0286158b145d4f10cd2c3b154f913998b9d /usr.bin/ftp | |
parent | 62118ce6963d049326bd94cead782dfd91c67b48 (diff) | |
download | FreeBSD-src-c5c43ce91fc476c67d622b0ca48e8e25ca653ff6.zip FreeBSD-src-c5c43ce91fc476c67d622b0ca48e8e25ca653ff6.tar.gz |
Don't depend on <sys/stat.h> bogusly including <sys/time.h> (and thereby
<time.h>).
Diffstat (limited to 'usr.bin/ftp')
-rw-r--r-- | usr.bin/ftp/ftp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/usr.bin/ftp/ftp.c b/usr.bin/ftp/ftp.c index abbad7f..5ef7723 100644 --- a/usr.bin/ftp/ftp.c +++ b/usr.bin/ftp/ftp.c @@ -47,6 +47,7 @@ __RCSID_SOURCE("$NetBSD: ftp.c,v 1.29.2.1 1997/11/18 01:01:04 mellon Exp $"); #include <sys/types.h> #include <sys/stat.h> #include <sys/socket.h> +#include <sys/time.h> #include <netinet/in.h> #include <netinet/in_systm.h> |