Add another ifdef for GNU extension

This commit is contained in:
jvoisin 2021-12-23 20:44:45 +01:00 committed by Daniel Micay
parent 769e01fc4b
commit 9966adbdad

View File

@ -26,5 +26,7 @@ int main(void) {
pthread_join(thread[i], NULL);
}
#if defined(__GLIBC__) || defined(__ANDROID__)
malloc_info(0, stdout);
#endif
}