0 \
}
-/* UNDEFINED_VALUE and UNDEFINED_PTR are used to initialize variables whose
- initialized value is not relied upon. UNDEFINED_VALUE can be used to
+/* UNDEFINED and UNDEFINED_PTR are used to initialize variables whose
+ initialized value is not relied upon. UNDEFINED can be used to
initialized any value type except pointers. UNDEFINED_PTR can be used
only on pointer types. */
-#define UNDEFINED_VALUE { 0 }
+#define UNDEFINED { 0 }
#define UNDEFINED_PTR NULL
/* symbolic names for capacity levels */
/* rumors.c */
0, /* true_rumor_size */
0, /* false_rumor_size */
- UNDEFINED_VALUE, /* true_rumor_start*/
- UNDEFINED_VALUE, /* false_rumor_start*/
- UNDEFINED_VALUE, /* true_rumor_end */
- UNDEFINED_VALUE, /* false_rumor_end */
+ UNDEFINED, /* true_rumor_start*/
+ UNDEFINED, /* false_rumor_start*/
+ UNDEFINED, /* true_rumor_end */
+ UNDEFINED, /* false_rumor_end */
0, /* oracle_flag */
0, /* oracle_cnt */
NULL, /* oracle_loc */
STRANGE_OBJECT, /* nocreate3 */
STRANGE_OBJECT, /* nocreate4 */
/* uhitm.c */
- UNDEFINED_VALUE, /* override_confirmation */
+ UNDEFINED, /* override_confirmation */
/* weapon.c */
UNDEFINED_PTR, /* propellor */
/* zap.c */
- UNDEFINED_VALUE, /* poly_zap */
- UNDEFINED_VALUE, /* obj_zapped */
+ UNDEFINED, /* poly_zap */
+ UNDEFINED, /* obj_zapped */
IVMAGIC /* used to validate that structure layout has been preserved */
};
static struct {
boolean roles[SIZE(roles)];
short mask;
-} rfilter = UNDEFINED_VALUE;
+} rfilter = UNDEFINED;
STATIC_DCL int NDECL(randrole_filtered);
STATIC_DCL char *FDECL(promptsep, (char *, int));