]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - hunt/huntd/extern.c
Fix bogon in compat re code.
[bsdgames-darwin.git] / hunt / huntd / extern.c
index 64e5fccf9c49e5de9becc099654a89c63d7cdc90..d11b0ca512e4d97f99b8962717b78c54453d85e0 100644 (file)
@@ -1,9 +1,15 @@
+/*     $NetBSD: extern.c,v 1.3 2002/09/20 20:54:16 mycroft Exp $       */
 /*
  *  Hunt
  *  Copyright (c) 1985 Conrad C. Huang, Gregory S. Couch, Kenneth C.R.C. Arnold
  *  San Francisco, California
  */
 
+#include <sys/cdefs.h>
+#ifndef lint
+__RCSID("$NetBSD: extern.c,v 1.3 2002/09/20 20:54:16 mycroft Exp $");
+#endif /* not lint */
+
 # include      "hunt.h"
 
 # ifdef MONITOR
@@ -14,14 +20,10 @@ char        Buf[BUFSIZ];                    /* general scribbling buffer */
 char   Maze[HEIGHT][WIDTH2];           /* the maze */
 char   Orig_maze[HEIGHT][WIDTH2];      /* the original maze */
 
-long   Fds_mask;                       /* mask for the file descriptors */
-int    Have_inp;                       /* which file descriptors have input */
+struct pollfd fdset[3+MAXPL+MAXMON];
 int    Nplayer = 0;                    /* number of players */
-int    Num_fds;                        /* number of maximum file descriptor */
 int    Socket;                         /* main socket */
-long   Sock_mask;                      /* select mask for main socket */
 int    Status;                         /* stat socket */
-long   Stat_mask;                      /* select mask for stat socket */
 int    See_over[NASCII];               /* lookup table for determining whether
                                         * character represents "transparent"
                                         * item */