Module Name:    src
Committed By:   dholland
Date:           Sat Mar 22 23:16:21 UTC 2014

Modified Files:
        src/games/battlestar: extern.h

Log Message:
Use CHAR_BIT, not 8.


To generate a diff of this commit:
cvs rdiff -u -r1.33 -r1.34 src/games/battlestar/extern.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/games/battlestar/extern.h
diff -u src/games/battlestar/extern.h:1.33 src/games/battlestar/extern.h:1.34
--- src/games/battlestar/extern.h:1.33	Fri Aug 26 06:18:17 2011
+++ src/games/battlestar/extern.h	Sat Mar 22 23:16:21 2014
@@ -1,4 +1,4 @@
-/*	$NetBSD: extern.h,v 1.33 2011/08/26 06:18:17 dholland Exp $ */
+/*	$NetBSD: extern.h,v 1.34 2014/03/22 23:16:21 dholland Exp $ */
 
 /*
  * Copyright (c) 1983, 1993
@@ -38,10 +38,11 @@
 #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 (int))
 
 #define OUTSIDE		(position > 68 && position < 246 && position != 218)
 #define rnd(x)		(rand() % (x))

Reply via email to