]> icculus.org git repositories - divverent/darkplaces.git/blob - builddate.c
factor out the non-utf8 part of u8_get*char into macros
[divverent/darkplaces.git] / builddate.c
1 #define STRINGIFY2(arg) #arg
2 #define STRINGIFY(arg) STRINGIFY2(arg)
3
4 const char *buildstring = __TIME__ " " __DATE__
5 #ifdef SVNREVISION
6 " " STRINGIFY(SVNREVISION)
7 #endif
8 #ifdef BUILDTYPE
9 " " STRINGIFY(BUILDTYPE)
10 #endif
11 ;