14 lines
209 B
C
14 lines
209 B
C
![]() |
/*
|
||
|
* version.c: version string
|
||
|
*/
|
||
|
|
||
|
#include <stdio.h>
|
||
|
|
||
|
#ifndef VERSION
|
||
|
#define VER "anonymous build (" __DATE__ " " __TIME__ ")"
|
||
|
#else
|
||
|
#define VER "version " VERSION
|
||
|
#endif
|
||
|
|
||
|
const char *const version = VER;
|