Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
musl
/
2ac580fdfe1daf9924f221dc98878ae480306bfa
/
.
/
src
/
stdio
/
funlockfile.c
blob: f8a2a071e64596b00e52940d47d94ca7ec2bee80 [
file
] [
log
] [
blame
]
#include
"stdio_impl.h"
#include
"pthread_impl.h"
void
funlockfile
(
FILE
*
f
)
{
if
(!--
f
->
lockcount
)
__unlockfile
(
f
);
}