diff options
author | Ruslan Ermilov <ru@FreeBSD.org> | 2011-12-14 08:35:08 +0000 |
---|---|---|
committer | Ruslan Ermilov <ru@FreeBSD.org> | 2011-12-14 08:35:08 +0000 |
commit | e26e60ee367d2106dead8593e1c8838c5eb380cf (patch) | |
tree | 9cbb4823f87333a8a09fc07ec3f42f526da5bbcc | |
parent | 214c358257ed473283079cfa18ffb4f3d0bb10ca (diff) |
Notes
-rw-r--r-- | lib/libc/gen/getosreldate.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/libc/gen/getosreldate.c b/lib/libc/gen/getosreldate.c index 83bdc85aa26d..b4bf545ed31e 100644 --- a/lib/libc/gen/getosreldate.c +++ b/lib/libc/gen/getosreldate.c @@ -33,12 +33,11 @@ static char sccsid[] = "@(#)gethostid.c 8.1 (Berkeley) 6/2/93"; #include <sys/cdefs.h> __FBSDID("$FreeBSD$"); -#include <sys/param.h> +#include <sys/types.h> #include <sys/sysctl.h> -#include <errno.h> -#include <stdlib.h> -#include <osreldate.h> +#include <stdlib.h> +#include <unistd.h> int getosreldate(void) |