diff options
author | imp <imp@FreeBSD.org> | 2002-03-22 01:22:50 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2002-03-22 01:22:50 +0000 |
commit | 74d826c7a6e9f98072df5f7dba2b84aa516fe425 (patch) | |
tree | 6ba560b9c74ad4aa7b2711587ec42a969bdca745 /usr.bin/du/du.c | |
parent | ce819c0c139981d7bab5fe36a6074af74b01d185 (diff) | |
download | FreeBSD-src-74d826c7a6e9f98072df5f7dba2b84aa516fe425.zip FreeBSD-src-74d826c7a6e9f98072df5f7dba2b84aa516fe425.tar.gz |
remove __P
Diffstat (limited to 'usr.bin/du/du.c')
-rw-r--r-- | usr.bin/du/du.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/usr.bin/du/du.c b/usr.bin/du/du.c index 62888ce..7bf007c 100644 --- a/usr.bin/du/du.c +++ b/usr.bin/du/du.c @@ -96,13 +96,13 @@ struct ignentry { SLIST_ENTRY(ignentry) next; }; -int linkchk __P((FTSENT *)); -static void usage __P((void)); -void prthumanval __P((double)); -unit_t unit_adjust __P((double *)); -void ignoreadd __P((const char *)); -void ignoreclean __P((void)); -int ignorep __P((FTSENT *)); +int linkchk(FTSENT *); +static void usage(void); +void prthumanval(double); +unit_t unit_adjust(double *); +void ignoreadd(const char *); +void ignoreclean(void); +int ignorep(FTSENT *); int main(argc, argv) |