1
hermetic_cc_toolchain/test/c/main.c
2022-04-18 11:42:13 +03:00

12 lines
197 B
C

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