diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2016-08-27 02:11:28 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2016-08-27 02:11:28 +0000 |
commit | bfb4c298b62293bb900dbb57ac38e17bc49f3084 (patch) | |
tree | 7ad451ea4b09f7900e8debed9e95edf323b7e820 /games/boggle | |
parent | dd1efc4d8779a52b3e8288685a0c9af6b915f982 (diff) |
Pull in <sys/select.h> for fd_set
Pull in <time.h> for time()
ok deraadt@
Diffstat (limited to 'games/boggle')
-rw-r--r-- | games/boggle/boggle/timer.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/games/boggle/boggle/timer.c b/games/boggle/boggle/timer.c index 1c1ce72c843..109c1a4ccfa 100644 --- a/games/boggle/boggle/timer.c +++ b/games/boggle/boggle/timer.c @@ -1,4 +1,4 @@ -/* $OpenBSD: timer.c,v 1.14 2016/01/10 13:35:09 mestre Exp $ */ +/* $OpenBSD: timer.c,v 1.15 2016/08/27 02:11:27 guenther Exp $ */ /* $NetBSD: timer.c,v 1.3 1995/04/24 12:22:45 cgd Exp $ */ /*- @@ -33,8 +33,10 @@ * SUCH DAMAGE. */ +#include <sys/select.h> #include <curses.h> #include <setjmp.h> +#include <time.h> #include <unistd.h> #include "extern.h" |