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/comm | |
parent | ce819c0c139981d7bab5fe36a6074af74b01d185 (diff) | |
download | FreeBSD-src-74d826c7a6e9f98072df5f7dba2b84aa516fe425.zip FreeBSD-src-74d826c7a6e9f98072df5f7dba2b84aa516fe425.tar.gz |
remove __P
Diffstat (limited to 'usr.bin/comm')
-rw-r--r-- | usr.bin/comm/comm.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/comm/comm.c b/usr.bin/comm/comm.c index 5d234c8..3c089c6 100644 --- a/usr.bin/comm/comm.c +++ b/usr.bin/comm/comm.c @@ -62,10 +62,10 @@ __FBSDID("$FreeBSD$"); const char *tabs[] = { "", "\t", "\t\t" }; -FILE *file __P((char *)); -void show __P((FILE *, const char *, char *)); -int stricoll __P((char *, char *)); -static void usage __P((void)); +FILE *file(char *); +void show(FILE *, const char *, char *); +int stricoll(char *, char *); +static void usage(void); int main(argc, argv) |