0d4c92c24d9de3793f28870b60020b8bd5001d99
[musl] / src / stdio / flockfile.c
1 #include "stdio_impl.h"
2 #include "pthread_impl.h"
3
4 void flockfile(FILE *f)
5 {
6         if (!libc.threaded) pthread_self();
7         __lockfile(f);
8 }