mirror of https://github.com/mpv-player/mpv
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;
|
||
|
}
|