Pull in <sys/select.h> for fd_set
authorguenther <guenther@openbsd.org>
Sat, 27 Aug 2016 02:06:40 +0000 (02:06 +0000)
committerguenther <guenther@openbsd.org>
Sat, 27 Aug 2016 02:06:40 +0000 (02:06 +0000)
ok deraadt@

games/hunt/hunt/list.c
games/hunt/hunt/playit.c
games/hunt/huntd/answer.c
games/hunt/huntd/conf.c
games/hunt/huntd/draw.c
games/hunt/huntd/execute.c
games/hunt/huntd/expl.c
games/hunt/huntd/extern.c
games/hunt/huntd/makemaze.c
games/hunt/huntd/shots.c
games/hunt/huntd/terminal.c

index 50a00da..d4a02c5 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: list.c,v 1.8 2016/01/07 21:37:53 mestre Exp $ */
+/*     $OpenBSD: list.c,v 1.9 2016/08/27 02:06:40 guenther Exp $       */
 /*
  * Copyright 2001, David Leonard. All rights reserved.
  * Redistribution and use in source and binary forms with or without
@@ -7,6 +7,7 @@
  */
 
 #include <sys/ioctl.h>
+#include <sys/select.h>
 #include <sys/socket.h>
 
 #include <arpa/inet.h>
index b15014f..abd960e 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: playit.c,v 1.12 2016/01/10 13:35:09 mestre Exp $      */
+/*     $OpenBSD: playit.c,v 1.13 2016/08/27 02:06:40 guenther Exp $    */
 /*     $NetBSD: playit.c,v 1.4 1997/10/20 00:37:15 lukem Exp $ */
 /*
  * Copyright (c) 1983-2003, Regents of the University of California.
@@ -31,6 +31,7 @@
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
+#include <sys/select.h>
 #include <ctype.h>
 #include <err.h>
 #include <errno.h>
index 1c11e5d..aad1845 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: answer.c,v 1.20 2016/03/28 11:49:45 chl Exp $ */
+/*     $OpenBSD: answer.c,v 1.21 2016/08/27 02:06:40 guenther Exp $    */
 /*     $NetBSD: answer.c,v 1.3 1997/10/10 16:32:50 lukem Exp $ */
 /*
  * Copyright (c) 1983-2003, Regents of the University of California.
@@ -31,6 +31,8 @@
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
+#include <sys/select.h>
+
 #include <arpa/inet.h>
 #include <netinet/in.h>
 
index 26dfa53..3947e55 100644 (file)
@@ -1,6 +1,7 @@
-/*     $OpenBSD: conf.c,v 1.10 2016/01/07 21:37:53 mestre Exp $        */
+/*     $OpenBSD: conf.c,v 1.11 2016/08/27 02:06:40 guenther Exp $      */
 /* David Leonard <d@openbsd.org>, 1999. Public domain. */
 
+#include <sys/select.h>
 #include <ctype.h>
 #include <dirent.h>
 #include <errno.h>
index 9c9c86b..63a8c56 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: draw.c,v 1.9 2016/01/07 21:37:53 mestre Exp $ */
+/*     $OpenBSD: draw.c,v 1.10 2016/08/27 02:06:40 guenther Exp $      */
 /*     $NetBSD: draw.c,v 1.2 1997/10/10 16:33:04 lukem Exp $   */
 /*
  * Copyright (c) 1983-2003, Regents of the University of California.
@@ -31,6 +31,7 @@
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
+#include <sys/select.h>
 #include <string.h>
 
 #include "conf.h"
index a6af15c..c54cd4c 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: execute.c,v 1.12 2016/01/07 21:37:53 mestre Exp $     */
+/*     $OpenBSD: execute.c,v 1.13 2016/08/27 02:06:40 guenther Exp $   */
 /*     $NetBSD: execute.c,v 1.2 1997/10/10 16:33:13 lukem Exp $        */
 /*
  * Copyright (c) 1983-2003, Regents of the University of California.
@@ -31,6 +31,7 @@
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
+#include <sys/select.h>
 #include <stdlib.h>
 #include <string.h>
 #include <syslog.h>
index 10cd97b..e7211e2 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: expl.c,v 1.13 2016/01/07 21:37:53 mestre Exp $        */
+/*     $OpenBSD: expl.c,v 1.14 2016/08/27 02:06:40 guenther Exp $      */
 /*     $NetBSD: expl.c,v 1.2 1997/10/10 16:33:18 lukem Exp $   */
 /*
  * Copyright (c) 1983-2003, Regents of the University of California.
@@ -31,6 +31,7 @@
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
+#include <sys/select.h>
 #include <stdlib.h>
 #include <syslog.h>
 #include <string.h>
index 05a559d..01756bd 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: extern.c,v 1.5 2016/01/07 21:29:31 mestre Exp $       */
+/*     $OpenBSD: extern.c,v 1.6 2016/08/27 02:06:40 guenther Exp $     */
 /*     $NetBSD: extern.c,v 1.2 1997/10/10 16:33:24 lukem Exp $ */
 /*
  * Copyright (c) 1983-2003, Regents of the University of California.
@@ -31,6 +31,7 @@
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
+#include <sys/select.h>
 #include "hunt.h"
 #include "server.h"
 
index f6f5660..3d5df77 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: makemaze.c,v 1.8 2016/01/07 21:37:53 mestre Exp $     */
+/*     $OpenBSD: makemaze.c,v 1.9 2016/08/27 02:06:40 guenther Exp $   */
 /*     $NetBSD: makemaze.c,v 1.2 1997/10/10 16:33:43 lukem Exp $       */
 /*
  * Copyright (c) 1983-2003, Regents of the University of California.
@@ -31,6 +31,7 @@
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
+#include <sys/select.h>
 #include <string.h>
 
 #include "conf.h"
index fea7e35..5719171 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: shots.c,v 1.12 2016/01/07 21:37:53 mestre Exp $       */
+/*     $OpenBSD: shots.c,v 1.13 2016/08/27 02:06:40 guenther Exp $     */
 /*     $NetBSD: shots.c,v 1.3 1997/10/11 08:13:50 lukem Exp $  */
 /*
  * Copyright (c) 1983-2003, Regents of the University of California.
@@ -31,6 +31,7 @@
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
+#include <sys/select.h>
 #include <stdlib.h>
 #include <syslog.h>
 
index 2588441..1d37470 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: terminal.c,v 1.12 2016/01/07 21:37:53 mestre Exp $    */
+/*     $OpenBSD: terminal.c,v 1.13 2016/08/27 02:06:40 guenther Exp $  */
 /*     $NetBSD: terminal.c,v 1.2 1997/10/10 16:34:05 lukem Exp $       */
 /*
  * Copyright (c) 1983-2003, Regents of the University of California.
@@ -31,6 +31,7 @@
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
+#include <sys/select.h>
 #include <err.h>
 #include <stdarg.h>
 #include <syslog.h>