summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorguenther <guenther@openbsd.org>2016-08-27 02:11:27 +0000
committerguenther <guenther@openbsd.org>2016-08-27 02:11:27 +0000
commitba202854ffd7c35ec4de6964da50aa4568bddab1 (patch)
treec16a280921fca638549ec1cf30cbabd63d946e9a
parentPull in <sys/select.h> for fd_set (diff)
downloadwireguard-openbsd-ba202854ffd7c35ec4de6964da50aa4568bddab1.tar.xz
wireguard-openbsd-ba202854ffd7c35ec4de6964da50aa4568bddab1.zip
Pull in <sys/select.h> for fd_set
Pull in <time.h> for time() ok deraadt@
-rw-r--r--games/boggle/boggle/timer.c4
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"