Pull in <sys/time.h> for struct timespec, gettimeofday(), clock_gettime(),
authorguenther <guenther@openbsd.org>
Sat, 27 Aug 2016 02:02:44 +0000 (02:02 +0000)
committerguenther <guenther@openbsd.org>
Sat, 27 Aug 2016 02:02:44 +0000 (02:02 +0000)
and setitimer()

ok deraadt@

games/atc/graphics.c
games/pom/pom.c
games/robots/extern.c
games/robots/move.c
games/tetris/input.c

index 43078e5..28721e0 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: graphics.c,v 1.11 2015/12/31 16:50:29 mestre Exp $    */
+/*     $OpenBSD: graphics.c,v 1.12 2016/08/27 02:02:44 guenther Exp $  */
 /*     $NetBSD: graphics.c,v 1.3 1995/03/21 15:04:04 cgd Exp $ */
 
 /*-
@@ -42,6 +42,7 @@
  * For more info on this and all of my stuff, mail edjames@berkeley.edu.
  */
 
+#include <sys/time.h>
 #include <curses.h>
 #include <err.h>
 #include <stdlib.h>
index d50b884..a79b431 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: pom.c,v 1.22 2016/03/07 12:07:56 mestre Exp $ */
+/*     $OpenBSD: pom.c,v 1.23 2016/08/27 02:02:44 guenther Exp $       */
 /*    $NetBSD: pom.c,v 1.6 1996/02/06 22:47:29 jtc Exp $      */
 
 /*
@@ -44,6 +44,7 @@
  *
  */
 
+#include <sys/time.h>
 #include <ctype.h>
 #include <err.h>
 #include <math.h>
index d849f86..1208c93 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: extern.c,v 1.8 2016/01/04 17:33:24 mestre Exp $       */
+/*     $OpenBSD: extern.c,v 1.9 2016/08/27 02:02:44 guenther Exp $     */
 /*     $NetBSD: extern.c,v 1.3 1995/04/22 10:08:49 cgd Exp $   */
 
 /*
@@ -30,6 +30,7 @@
  * SUCH DAMAGE.
  */
 
+#include <sys/time.h>
 #include "robots.h"
 
 bool   Dead;                   /* Player is now dead */
index 61be003..9a4a0be 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: move.c,v 1.12 2016/01/04 17:33:24 mestre Exp $        */
+/*     $OpenBSD: move.c,v 1.13 2016/08/27 02:02:44 guenther Exp $      */
 /*     $NetBSD: move.c,v 1.4 1995/04/22 10:08:58 cgd Exp $     */
 
 /*
@@ -30,6 +30,7 @@
  * SUCH DAMAGE.
  */
 
+#include <sys/time.h>
 #include <ctype.h>
 #include <poll.h>
 #include <termios.h>
index 4b7904c..1a0fd87 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: input.c,v 1.17 2016/01/10 13:35:10 mestre Exp $       */
+/*     $OpenBSD: input.c,v 1.18 2016/08/27 02:02:44 guenther Exp $     */
 /*    $NetBSD: input.c,v 1.3 1996/02/06 22:47:33 jtc Exp $    */
 
 /*-
@@ -39,6 +39,7 @@
  * Tetris input.
  */
 
+#include <sys/time.h>
 #include <errno.h>
 #include <poll.h>
 #include <unistd.h>