diff options
Diffstat (limited to 'games/adventure/wizard.c')
-rw-r--r-- | games/adventure/wizard.c | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/games/adventure/wizard.c b/games/adventure/wizard.c index accf6ba..93c54a3 100644 --- a/games/adventure/wizard.c +++ b/games/adventure/wizard.c @@ -57,8 +57,7 @@ static const char rcsid[] = static int wizard (void); void -datime(d,t) -int *d,*t; +datime(int *d, int *t) { struct tm *tptr; time_t tvec; @@ -78,14 +77,14 @@ int *d,*t; char magic[6]; void -poof() +poof(void) { strcpy(magic, DECR('d','w','a','r','f')); latncy = 45; } int -Start() +Start(void) { int d,t,delay; datime(&d,&t); @@ -111,7 +110,7 @@ Start() } static int -wizard() /* not as complex as advent/10 (for now) */ +wizard(void) /* not as complex as advent/10 (for now) */ { char *word,*x; if (!yesm(16,0,7)) return(FALSE); @@ -126,7 +125,7 @@ wizard() /* not as complex as advent/10 (for now) */ } void -ciao() +ciao(void) { char *c; char fname[80]; @@ -148,8 +147,7 @@ ciao() int -ran(range) -int range; +ran(int range) { int i; |