diff options
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 */ |