/* * version.c: version string */ #include #ifndef VERSION #define VER "anonymous build (" __DATE__ " " __TIME__ ")" #else #define VER "version " VERSION #endif const char *const version = VER;