mirror of https://github.com/mpv-player/mpv
11 lines
263 B
C
11 lines
263 B
C
|
#include <pthread.h>
|
||
|
static void *func(void *arg) { return arg; }
|
||
|
int main(void) {
|
||
|
pthread_t tid;
|
||
|
#ifdef PTW32_STATIC_LIB
|
||
|
pthread_win32_process_attach_np();
|
||
|
pthread_win32_thread_attach_np();
|
||
|
#endif
|
||
|
return pthread_create (&tid, 0, func, 0) != 0;
|
||
|
}
|