diff options
author | jb <jb@FreeBSD.org> | 1998-05-09 11:03:03 +0000 |
---|---|---|
committer | jb <jb@FreeBSD.org> | 1998-05-09 11:03:03 +0000 |
commit | eee6720ad6008af62fc00167df79f7a65f97579f (patch) | |
tree | 24e6d55c8f64cfac3e557989c19745e3c540240f /games/phantasia/main.c | |
parent | 0c487350e516ac158d6c981e38d8bcd7f3854ebd (diff) | |
download | FreeBSD-src-eee6720ad6008af62fc00167df79f7a65f97579f.zip FreeBSD-src-eee6720ad6008af62fc00167df79f7a65f97579f.tar.gz |
Add #include string.h to get prototypes and change variables from long
to time_t where they are passed to time() and localtime() by reference.
Diffstat (limited to 'games/phantasia/main.c')
-rw-r--r-- | games/phantasia/main.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/games/phantasia/main.c b/games/phantasia/main.c index f412d09..2f24352 100644 --- a/games/phantasia/main.c +++ b/games/phantasia/main.c @@ -27,6 +27,7 @@ #include <sys/types.h> #include <pwd.h> +#include <string.h> /* * The program allocates as much file space as it needs to store characters, @@ -100,7 +101,7 @@ char **argv; bool noheader = FALSE; /* set if don't want header */ bool headeronly = FALSE; /* set if only want header */ bool examine = FALSE; /* set if examine a character */ -long seconds; /* for time of day */ +time_t seconds; /* for time of day */ double dtemp; /* for temporary calculations */ initialstate(); /* init globals */ |