diff options
| -rw-r--r-- | gtnw.c | 1 | ||||
| -rw-r--r-- | location.h | 3 |
2 files changed, 3 insertions, 1 deletions
@@ -5,6 +5,7 @@ #include <curses.h> #include <stdlib.h> #include <string.h> +#include <time.h> #include <unistd.h> static bool surrender=false; static int winner=0; /* on surrender */ @@ -1,4 +1,5 @@ -/* provide the GTNW with some geographical data to draw the missiles */ +#include <stdbool.h> +/* provide the GTNW with some geographical data to draw the missiles with */ enum player_t { USA=1, USSR }; struct location_t { const char* name; |