Add an error check for correct formatting in Deflate uncompressed
[sgt/halibut] / version.c
1 /*
2 * version.c: version string
3 */
4
5 #include <stdio.h>
6
7 #ifndef VERSION
8 #define VER "anonymous build (" __DATE__ " " __TIME__ ")"
9 #else
10 #define VER "version " VERSION
11 #endif
12
13 const char *const version = VER;