add forgotten main.cc

This commit is contained in:
Motiejus Jakštys 2022-11-21 06:19:32 +02:00
parent f983e66692
commit 13e9363cd8

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;
}