diff options
author | Kirk McKusick <mckusick@FreeBSD.org> | 2011-01-24 06:17:05 +0000 |
---|---|---|
committer | Kirk McKusick <mckusick@FreeBSD.org> | 2011-01-24 06:17:05 +0000 |
commit | 7649cb0043cb41571f2748bc287da294a8c3b870 (patch) | |
tree | 745a3d9e1c16eed61f71f5c30e0dd0e1c250c1e8 /sbin/fsdb/fsdb.c | |
parent | 9c990fb2a4b18c1d8518ce5466757c5c2b89d8e8 (diff) | |
download | src-7649cb0043cb41571f2748bc287da294a8c3b870.tar.gz src-7649cb0043cb41571f2748bc287da294a8c3b870.zip |
The dump, fsck_ffs, fsdb, fsirand, newfs, makefs, and quot utilities
include sys/time.h instead of time.h. This include is incorrect as
per the manpages for the APIs and the POSIX definitions. This commit
replaces sys/time.h where necessary with time.h.
The commit also includes some minor style(9) header fixup in newfs.
This commit is part of a larger effort by Garrett Cooper started in
//depot/user/gcooper/posix-conformance-work/ -- to make FreeBSD more
POSIX compliant.
Submitted by: Garrett Cooper yanegomi at gmail dot com
Notes
Notes:
svn path=/head/; revision=217769
Diffstat (limited to 'sbin/fsdb/fsdb.c')
-rw-r--r-- | sbin/fsdb/fsdb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/fsdb/fsdb.c b/sbin/fsdb/fsdb.c index 5622cbb29196..172265368208 100644 --- a/sbin/fsdb/fsdb.c +++ b/sbin/fsdb/fsdb.c @@ -34,13 +34,13 @@ static const char rcsid[] = #endif /* not lint */ #include <sys/param.h> -#include <sys/time.h> #include <ctype.h> #include <err.h> #include <grp.h> #include <histedit.h> #include <pwd.h> #include <string.h> +#include <time.h> #include <timeconv.h> #include <ufs/ufs/dinode.h> |