diff options
Diffstat (limited to 'bin/df/ffs_df.c')
-rw-r--r-- | bin/df/ffs_df.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/bin/df/ffs_df.c b/bin/df/ffs_df.c index 88778f996f0..412eb6829c6 100644 --- a/bin/df/ffs_df.c +++ b/bin/df/ffs_df.c @@ -42,13 +42,16 @@ static char copyright[] = The Regents of the University of California. All rights reserved.\n"; #endif /* not lint */ -#include <unistd.h> -#include <fcntl.h> #include <sys/param.h> #include <sys/mount.h> #include <ufs/ufs/dinode.h> #include <ufs/ffs/fs.h> +#include <unistd.h> +#include <stdlib.h> +#include <string.h> +#include <fcntl.h> + int ffs_df __P((int, char *, struct statfs *)); extern int bread __P((int, off_t, void *, int)); |