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/random | |
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/random')
-rw-r--r-- | games/random/random.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/games/random/random.c b/games/random/random.c index 8936b5d..9c66da4 100644 --- a/games/random/random.c +++ b/games/random/random.c @@ -58,7 +58,7 @@ static const char rcsid[] = #include <time.h> #include <unistd.h> -void usage __P((void)); +void usage(void); int main(argc, argv) |