f8a2a071e64596b00e52940d47d94ca7ec2bee80
[musl] / funlockfile.c
1 #include "stdio_impl.h"
2 #include "pthread_impl.h"
3
4 void funlockfile(FILE *f)
5 {
6         if (!--f->lockcount) __unlockfile(f);
7 }