]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - hack/def.monst.h
cgram: rewrite completely, fixing bugs and style
[bsdgames-darwin.git] / hack / def.monst.h
index 0176ac33324f9065e850c1617db4db555ef7b962..99c2ccf90ca3f8ff9745cb54b49fa5356f97fd5b 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: def.monst.h,v 1.7 2003/04/02 18:36:34 jsm Exp $        */
+/*     $NetBSD: def.monst.h,v 1.9 2011/08/16 09:26:22 christos Exp $   */
 
 /*
  * Copyright (c) 1985, Stichting Centrum voor Wiskunde en Informatica,
@@ -107,11 +107,13 @@ struct monst {
        long mextra[1];         /* monster dependent info */
 };
 
-#define newmonst(xl)   (struct monst *) alloc((unsigned)(xl) + sizeof(struct monst))
+#define newmonst(xl)   ((struct monst *) alloc((xl) + sizeof(struct monst)))
 
 extern struct monst *fmon;
 extern struct monst *fallen_down;
 
+extern void *monster_private(struct monst *);
+
 /* these are in mspeed */
 #define MSLOW 1 /* slow monster */
 #define MFAST 2 /* speeded monster */