diff options
author | imp <imp@FreeBSD.org> | 2002-02-18 05:15:19 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2002-02-18 05:15:19 +0000 |
commit | 24cd0a3c91f27cb3589ccd980187ccc8c7c51b6d (patch) | |
tree | 275284ba202a3acb4c5d5041be389eba1a666e3b /games/number/number.c | |
parent | d533053fe68906076e15c9a57531ef155a7d4283 (diff) | |
download | FreeBSD-src-24cd0a3c91f27cb3589ccd980187ccc8c7c51b6d.zip FreeBSD-src-24cd0a3c91f27cb3589ccd980187ccc8c7c51b6d.tar.gz |
Remove __P
Remove __STDC__ (which means we now use stdarg rather than vararg)
Remove register
Remove main prototype
Diffstat (limited to 'games/number/number.c')
-rw-r--r-- | games/number/number.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/games/number/number.c b/games/number/number.c index c7dfbe4..f3d6a10 100644 --- a/games/number/number.c +++ b/games/number/number.c @@ -78,12 +78,12 @@ static const char *name1[] = { "novemdecillion", "vigintillion", }; -void convert __P((char *)); -int number __P((char *, int)); -void pfract __P((int)); -void toobig __P((void)); -int unit __P((int, char *)); -void usage __P((void)); +void convert(char *); +int number(char *, int); +void pfract(int); +void toobig(void); +int unit(int, char *); +void usage(void); int lflag; |