summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/libpthread/pthread_funlockfile.c
blob: beae058af6b749430dbbe4b1698e56f35c1d19b9 (plain)
1
2
3
4
5
#include "dietstdio.h"

void funlockfile(FILE* f) {
  pthread_mutex_unlock(&f->m);
}