Files
RedBear-OS/local/recipes/dev/meson/source/test cases/common/194 static threads/lib1.c
T

14 lines
171 B
C

#if defined _WIN32
#include<windows.h>
#else
#include<pthread.h>
#endif
void *f(void) {
#if defined _WIN32
return CreateThread;
#else
return pthread_create;
#endif
}