Renamed UNDEFINED to UNDEFINED_VALUE.

This commit is contained in:
Bart House
2018-11-23 10:22:01 -08:00
parent 716c2ceccf
commit cee4933c24
3 changed files with 11 additions and 11 deletions

View File

@@ -22,11 +22,11 @@
0 \
}
/* UNDEFINED and UNDEFINED_PTR are used to initialize variables whose
initialized value is not relied upon. UNDEFINED can be used to
/* 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 { 0 }
#define UNDEFINED_VALUE { 0 }
#define UNDEFINED_PTR NULL
/* symbolic names for capacity levels */