Sign in
cobalt
/
cobalt
/
25399f97090f8a86f56525c38486080cb2747250
/
.
/
src
/
third_party
/
musl
/
src
/
stdio
/
funlockfile.c
blob: 30a07ef4b37433d46ec5ef44e9c67001a5841e7e [
file
] [
log
] [
blame
]
#include
"stdio_impl.h"
#include
"pthread_impl.h"
void
__unlist_locked_file
(
FILE
*);
void
funlockfile
(
FILE
*
f
)
{
if
(
f
->
lockcount
==
1
)
{
__unlist_locked_file
(
f
);
f
->
lockcount
=
0
;
__unlockfile
(
f
);
}
else
{
f
->
lockcount
--;
}
}