]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - larn/header.h
Use standard AUTHORS section header. From YOMURA Masanori in private mail
[bsdgames-darwin.git] / larn / header.h
index 66823741fadca04e5f23cfcff517a3958f514e69..f2a4cf7063c7609e0e2e6d5e3143da391813653a 100644 (file)
@@ -1,4 +1,4 @@
-/* $NetBSD: header.h,v 1.13 2001/02/05 00:57:33 christos Exp $  */
+/* $NetBSD: header.h,v 1.15 2005/02/03 02:23:02 perry Exp $     */
 
 /* header.h            Larn is copyrighted 1986 by Noah Morgan. */
 
@@ -321,7 +321,9 @@ struct sphere {
 #define DEMONLORD 57
 #define DEMONPRINCE 64
 
+#ifndef NULL
 #define NULL 0
+#endif
 #define BUFBIG 4096            /* size of the output buffer */
 #define MAXIBUF        4096            /* size of the input buffer */
 #define LOGNAMESIZE 40         /* max size of the players name */
@@ -427,7 +429,7 @@ extern int      rmst, maxitm, lasttime;
 #define lprc(ch) ((lpnt>=lpend)?(*lpnt++ =(ch), lflush()):(*lpnt++ =(ch)))
 
 /* macro to seed the random number generator */
-#define srand(x) (randx=x)
+#define seedrand(x) (randx=x)
 #ifdef MACRORND
 /* macros to generate random numbers   1<=rnd(N)<=N   0<=rund(N)<=N-1 */
 #define rnd(x)  ((((randx=randx*1103515245+12345)>>7)%(x))+1)