0
0
Fork 0
mirror of https://github.com/ZDoom/raze-gles.git synced 2025-01-18 05:11:37 +00:00
raze-gles/polymer/eduke32/source/rev.c

15 lines
322 B
C
Raw Normal View History

// This file's main purpose is to be recompiled unconditionally so the timestamp gets updated, even for a partial recompile.
#if !defined REV
# define REV "r(?)"
#endif
#ifdef __cplusplus
extern "C" {
#endif
const char* s_buildRev = REV;
const char* s_buildTimestamp = __DATE__ " " __TIME__;
#ifdef __cplusplus
}
#endif