GophHub - go4retro/tcpser/src/version.h


Raw File

    1	#define STRINGIFY(x) #x
    2	#define TOSTRING(x) STRINGIFY(x)
    3	
    4	#define VER_MAJOR         1
    5	#define VER_MINOR         1
    6	#define VER_PATCH         6
    7	#define VER_FIX           _beta
    8	
    9	#ifdef VER_FIX
   10	  #define VERSION           TOSTRING(VER_MAJOR) "." TOSTRING(VER_MINOR) "." TOSTRING(VER_PATCH)TOSTRING(VER_FIX)
   11	#else
   12	  #define VERSION           TOSTRING(VER_MAJOR) "." TOSTRING(VER_MINOR) "." TOSTRING(VER_PATCH)
   13	#endif
   14	
   15	

Generated by GNU Enscript 1.6.6, and GophHub 1.3.