1 #include "stdio_impl.h"
2 
funlockfile(FILE * f)3 void funlockfile(FILE* f) {
4     if (--f->lockcount == 0) {
5         __unlockfile(f);
6     }
7 }
8