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/jot | |
parent | ce819c0c139981d7bab5fe36a6074af74b01d185 (diff) | |
download | FreeBSD-src-74d826c7a6e9f98072df5f7dba2b84aa516fe425.zip FreeBSD-src-74d826c7a6e9f98072df5f7dba2b84aa516fe425.tar.gz |
remove __P
Diffstat (limited to 'usr.bin/jot')
-rw-r--r-- | usr.bin/jot/jot.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.bin/jot/jot.c b/usr.bin/jot/jot.c index 1ab2bd9..86f8023 100644 --- a/usr.bin/jot/jot.c +++ b/usr.bin/jot/jot.c @@ -83,11 +83,11 @@ int nofinalnl; const char *sepstring = "\n"; char format[BUFSIZ]; -int main __P((int, char *[])); -void getformat __P((void)); -int getprec __P((char *)); -int putdata __P((double, long)); -static void usage __P((void)); +int main(int, char *[]); +void getformat(void); +int getprec(char *); +int putdata(double, long); +static void usage(void); int main(argc, argv) |