Revert "Moved potion.c globals to instance_globals."

This reverts commit d3c192e5a8.
This commit is contained in:
nhmall
2018-11-23 22:16:54 -05:00
parent 6f3f1caee3
commit 2fb68024fe
15 changed files with 84 additions and 74 deletions

View File

@@ -22,13 +22,11 @@
0 \
}
/* The UNDEFINED macros are used to initialize variables whose
initialized value is not relied upon.
UNDEFINED_VALUE: used to initialize any scalar type except pointers.
UNDEFINED_VALUES: used to initialize any non scalar type without pointers.
UNDEFINED_PTR: can be used only on pointer types. */
#define UNDEFINED_VALUE 0
#define UNDEFINED_VALUES { 0 }
/* UNDEFINED_VALUE and UNDEFINED_PTR are used to initialize variables whose
initialized value is not relied upon. UNDEFINED_VALUE 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_PTR NULL
/* symbolic names for capacity levels */