mirror of
https://github.com/mpv-player/mpv
synced 2024-12-11 09:25:56 +00:00
7 lines
155 B
C
7 lines
155 B
C
|
#include <pthread.h>
|
||
|
static void *func(void *arg) { return arg; }
|
||
|
int main(void) {
|
||
|
pthread_t tid;
|
||
|
return pthread_create (&tid, 0, func, 0) != 0;
|
||
|
}
|