mirror of
git://git.tartarus.org/simon/puzzles.git
synced 2025-04-21 16:05:44 -07:00
Files

ends. Versioning will be done solely by Subversion revision number, since development on these puzzles is very incremental and gradual and there don't tend to be obvious points to place numbered releases. [originally from svn r5781]
17 lines
220 B
C
17 lines
220 B
C
/*
|
|
* Puzzles version numbering.
|
|
*/
|
|
|
|
#define STR1(x) #x
|
|
#define STR(x) STR1(x)
|
|
|
|
#if defined REVISION
|
|
|
|
char ver[] = "Revision: r" STR(REVISION);
|
|
|
|
#else
|
|
|
|
char ver[] = "Unidentified build, " __DATE__ " " __TIME__;
|
|
|
|
#endif
|