]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - hack/def.permonst.h
Negative exit code cleanup: Replace exit(-x) with exit(x).
[bsdgames-darwin.git] / hack / def.permonst.h
index d3c75f47dae45829adc3804eee8f5aa527315193..2e3aca61d08a60fed2eb396a2385f2846ef78d1c 100644 (file)
@@ -1,16 +1,19 @@
+/*     $NetBSD: def.permonst.h,v 1.5 2001/03/25 20:43:58 jsm Exp $     */
+
 /*
  * Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985.
  *
- *     $NetBSD: def.permonst.h,v 1.3 1995/03/23 08:29:37 cgd Exp $
  */
-
+#ifndef _DEF_PERMONST_H_
+#define _DEF_PERMONST_H_
 struct permonst {
-       char *mname,mlet;
+       const char *mname;
+       char mlet;
        schar mlevel,mmove,ac,damn,damd;
        unsigned pxlth;
 };
 
-extern struct permonst mons[];
+extern const struct permonst mons[];
 #define PM_ACID_BLOB   &mons[7]
 #define        PM_ZOMBIE       &mons[13]
 #define        PM_PIERCER      &mons[17]
@@ -26,3 +29,5 @@ extern struct permonst mons[];
 #define        PM_EEL          &pm_eel
 #define        PM_WIZARD       &pm_wizard
 #define        CMNUM           55              /* number of common monsters */
+
+#endif /* _DEF_PERMONST_H_ */