#include #include int main() { #ifdef __GLIBC__ printf("glibc_%d.%d\n", __GLIBC__, __GLIBC_MINOR__); #else printf("non-glibc\n"); #endif return 0; }