diff options
| author | Max Laier <mlaier@FreeBSD.org> | 2008-11-04 19:23:48 +0000 |
|---|---|---|
| committer | Max Laier <mlaier@FreeBSD.org> | 2008-11-04 19:23:48 +0000 |
| commit | 0551897af215b04e387f8abdb4b2b110cba3e7bd (patch) | |
| tree | 19e05af7634f6b0aac386b03d7711b83340aa6ec /usr.bin | |
| parent | 07d214248bd14d99074a393301f02ffc7bc6bfbc (diff) | |
Notes
Diffstat (limited to 'usr.bin')
| -rw-r--r-- | usr.bin/du/du.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/usr.bin/du/du.c b/usr.bin/du/du.c index 1c242f745af8..7887a3a66790 100644 --- a/usr.bin/du/du.c +++ b/usr.bin/du/du.c @@ -73,12 +73,12 @@ struct ignentry { static int linkchk(FTSENT *); static void usage(void); -void prthumanval(int64_t); -void ignoreadd(const char *); -void ignoreclean(void); -int ignorep(FTSENT *); +static void prthumanval(int64_t); +static void ignoreadd(const char *); +static void ignoreclean(void); +static int ignorep(FTSENT *); -int nodumpflag = 0; +static int nodumpflag = 0; int main(int argc, char *argv[]) @@ -443,7 +443,7 @@ linkchk(FTSENT *p) return (0); } -void +static void prthumanval(int64_t bytes) { char buf[5]; @@ -465,7 +465,7 @@ usage(void) exit(EX_USAGE); } -void +static void ignoreadd(const char *mask) { struct ignentry *ign; @@ -479,7 +479,7 @@ ignoreadd(const char *mask) SLIST_INSERT_HEAD(&ignores, ign, next); } -void +static void ignoreclean(void) { struct ignentry *ign; @@ -492,7 +492,7 @@ ignoreclean(void) } } -int +static int ignorep(FTSENT *ent) { struct ignentry *ign; |
