]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - battlestar/extern.h
Use random(), not rand().
[bsdgames-darwin.git] / battlestar / extern.h
index ec0e60227276e77491af1a094557df4fe9f422cf..ce9a31270dea01c52f6c569d0d99216508d30cec 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: extern.h,v 1.31 2005/07/01 06:04:54 jmc Exp $ */
+/*     $NetBSD: extern.h,v 1.36 2014/03/22 23:33:33 dholland Exp $ */
 
 /*
  * Copyright (c) 1983, 1993
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
+#include <limits.h>
 #include <time.h>
 #include <unistd.h>
 
-#define BITS (8 * sizeof (int))
+#define BITS (CHAR_BIT * sizeof (unsigned int))
 
 #define OUTSIDE                (position > 68 && position < 246 && position != 218)
-#define rnd(x)         (rand() % (x))
+#define rnd(x)         (random() % (x))
 #define max(a,b)       ((a) < (b) ? (b) : (a))
-#define testbit(array, index)  (array[index/BITS] & (1 << (index % BITS)))
-#define setbit(array, index)   (array[index/BITS] |= (1 << (index % BITS)))
-#define clearbit(array, index) (array[index/BITS] &= ~(1 << (index % BITS)))
+#define testbit(array, index)  (array[index/BITS] & (1U << (index % BITS)))
+#define setbit(array, index)   (array[index/BITS] |= (1U << (index % BITS)))
+#define clearbit(array, index) (array[index/BITS] &= ~(1U << (index % BITS)))
 
  /* well known rooms */
 #define FINAL  275
@@ -331,11 +332,10 @@ extern const struct objs nightobjs[];
 void bury(void);
 int card(const char *, int);
 void chime(void);
-void convert(int);
 void crash(void);
 int cypher(void);
-void die(void) __attribute__((__noreturn__));
-void diesig(int) __attribute__((__noreturn__));
+void die(void) __dead;
+void diesig(int) __dead;
 void dig(void);
 void dooropen(void);
 int draw(void);
@@ -354,7 +354,7 @@ void kiss(void);
 int land(void);
 int launch(void);
 void light(void);
-void live(void) __attribute__((__noreturn__));
+void live(void) __dead;
 void love(void);
 int moveplayer(int, int);
 void murder(void);
@@ -362,7 +362,6 @@ void news(void);
 void newway(int);
 void open_score_file(void);
 void parse(void);
-void post(int);
 void printobjs(void);
 int put(void);
 int puton(void);