version.h
1 #ifndef _VERSION_H_ 2 #define _VERSION_H_ 3 4 #if defined(__GNUC__) || defined(__INTEL_COMPILER) 5 #define __ID(string) __asm__(".ident\t\"" string "\"") 6 #else 7 #define __ID(string) static const char rcsid[] __unused = string 8 #endif 9 10 #ifdef __cplusplus 11 extern "C" { 12 #endif 13 14 const char * getpackageversion(); 15 16 const char * checkupdates(); 17 18 #ifdef __cplusplus 19 } 20 #endif 21 22 #endif