musl-tcc/src/stdio/flockfile.c

10 lines
172 B
C

#include "stdio_impl.h"
#include "pthread_impl.h"
void flockfile(FILE *f)
{
if (!ftrylockfile(f)) return;
__lockfile(f);
__register_locked_file(f, __pthread_self());
}