mirror of
https://github.com/mpv-player/mpv
synced 2024-12-12 01:46:16 +00:00
ff322864f2
Adds support for the meson build system as well as a bit of documentation. Compatibility with the existing waf build is maintained.
6 lines
104 B
C
6 lines
104 B
C
#include <pthread.h>
|
|
int main(int argc, char **argv) {
|
|
pthread_setname_np("ducks");
|
|
return 0;
|
|
}
|