libver/lib/libver.h
2003-01-17 16:58:55 +00:00

49 lines
903 B
C

#ifdef __cplusplus
extern "C" {
#endif
#ifdef __linux
# if __GLIBC__ == 2
# if __GLIBC_MINOR__ == 2
# if __GLIBC_RELEASE__ == 2
# include <libver-glibc-2.2.2.h>
# elif __GLIBC_RELEASE__ == 5
# include <libver-glibc-2.2.5.h>
# else
# error This glibc release number is not supported by libver...
# endif
# else
# error This glibc minor version number is not supported by libver...
# endif
# else
# error This glibc major version number is not supported by libver...
# endif
#else
# include <sys/link.h>
#endif
#include <ver.h>
char VER_Error_Msg [256];
/*------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------*/
#ifdef __cplusplus
}
#endif