diff options
author | Warner Losh <imp@FreeBSD.org> | 2002-02-18 05:15:19 +0000 |
---|---|---|
committer | Warner Losh <imp@FreeBSD.org> | 2002-02-18 05:15:19 +0000 |
commit | ad64363769ccc68607fb1a7cf4559c3cc6edf59e (patch) | |
tree | 275284ba202a3acb4c5d5041be389eba1a666e3b /games/worms/worms.c | |
parent | ab3d6ee0980a4fdd7264657107a076f92afb0e56 (diff) |
Remove __P
Remove __STDC__ (which means we now use stdarg rather than vararg)
Remove register
Remove main prototype
Notes
Notes:
svn path=/head/; revision=90828
Diffstat (limited to 'games/worms/worms.c')
-rw-r--r-- | games/worms/worms.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/games/worms/worms.c b/games/worms/worms.c index ed50e37a1041..f31a6e431d94 100644 --- a/games/worms/worms.c +++ b/games/worms/worms.c @@ -179,8 +179,8 @@ static struct worm { } *worm; volatile sig_atomic_t sig_caught = 0; -void onsig __P((int)); void nomem(void); +void onsig(int); int main(argc, argv) |