1

README prose, the way I understand it

This commit is contained in:
Motiejus Jakštys
2022-04-15 15:20:42 +03:00
parent 4d65b80903
commit 0c02a827ae
4 changed files with 207 additions and 106 deletions

View File

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