diff options
author | dg <dg@FreeBSD.org> | 1995-12-08 08:47:41 +0000 |
---|---|---|
committer | dg <dg@FreeBSD.org> | 1995-12-08 08:47:41 +0000 |
commit | aaf9d7f10ecc63adae1dc4f55cfd31a2926c605a (patch) | |
tree | 68474bed5aca2cfa1303b80e2bc8eda4356cea15 | |
parent | d1494e2195def7537a7371fd27fed150c8c6b4ba (diff) | |
download | FreeBSD-src-aaf9d7f10ecc63adae1dc4f55cfd31a2926c605a.zip FreeBSD-src-aaf9d7f10ecc63adae1dc4f55cfd31a2926c605a.tar.gz |
Include sys/time.h, not sys/user.h.
Submitted by: "Marc G. Fournier" <scrappy@hub.org>
-rw-r--r-- | lib/libc/gen/sysconf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/gen/sysconf.c b/lib/libc/gen/sysconf.c index 154c329..16a3efa 100644 --- a/lib/libc/gen/sysconf.c +++ b/lib/libc/gen/sysconf.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)sysconf.c 8.2 (Berkeley) 3/20/94"; #endif /* LIBC_SCCS and not lint */ #include <sys/param.h> -#include <sys/user.h> +#include <sys/time.h> #include <sys/sysctl.h> #include <sys/resource.h> |