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