mirror of
https://github.com/fluencelabs/musl
synced 2025-05-19 02:31:29 +00:00
10 lines
141 B
C
10 lines
141 B
C
|
#include "stdio_impl.h"
|
||
|
#include "pthread_impl.h"
|
||
|
|
||
|
void flockfile(FILE *f)
|
||
|
{
|
||
|
pthread_self();
|
||
|
libc.lockfile = __lockfile;
|
||
|
__lockfile(f);
|
||
|
}
|