repo.or.cz
/
sgt-puzzles
/
ydirson.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add a STYLUS_BASED variant to magnets
[sgt-puzzles/ydirson.git]
/
version.c
blob
a44fbf6a864ae454f81ea474b9ca7096cef8336f
1
/*
2
* Puzzles version numbering.
3
*/
4
5
#define STR1(x) #x
6
#define STR(x) STR1(x)
7
8
#if defined REVISION
9
10
char
ver
[] =
"Revision: r"
STR
(
REVISION
);
11
12
#else
13
14
char
ver
[] =
"Unidentified build, "
__DATE__
" "
__TIME__
;
15
16
#endif