diff options
Diffstat (limited to 'version.c')
| -rw-r--r-- | version.c | 10 |
1 files changed, 2 insertions, 8 deletions
@@ -2,12 +2,6 @@ * version.c: version string */ -#include <stdio.h> +#include "version.h" -#ifndef VERSION -#define VER "anonymous build (" __DATE__ " " __TIME__ ")" -#else -#define VER "version " VERSION -#endif - -const char *const version = VER; +const char *const version = VERSION; |