The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
171 B
14 lines
171 B
6 years ago
|
#if defined _WIN32
|
||
|
#include<windows.h>
|
||
|
#else
|
||
|
#include<pthread.h>
|
||
|
#endif
|
||
|
|
||
|
void *f(void) {
|
||
|
#if defined _WIN32
|
||
|
return CreateThread;
|
||
|
#else
|
||
|
return pthread_create;
|
||
|
#endif
|
||
|
}
|