doomdef.h: refactor comptime externs

This commit is contained in:
James R 2023-01-05 18:20:42 -08:00
parent 16ac11d76e
commit f5b985bcc3

View file

@ -663,9 +663,15 @@ UINT32 quickncasehash (const char *p, size_t n)
#define PUNCTUATION "!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~" #define PUNCTUATION "!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~"
// Compile date and time and revision. // Compile date and time and revision.
extern const char *compdate, *comptime, *comprevision, *compbranch; extern const char
extern int compuncommitted, compoptimized; *compdate,
extern const char *comptype; *comptime,
*comprevision,
*compbranch,
*comptype;
extern int
compuncommitted,
compoptimized;
// Disabled code and code under testing // Disabled code and code under testing
// None of these that are disabled in the normal build are guaranteed to work perfectly // None of these that are disabled in the normal build are guaranteed to work perfectly