1
Fork 0

add forgotten main.cc

main
Motiejus Jakštys 2022-11-21 06:19:32 +02:00
parent f983e66692
commit 13e9363cd8
1 changed files with 11 additions and 0 deletions

11
main.cc Normal file
View File

@ -0,0 +1,11 @@
#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;
}