summaryrefslogtreecommitdiff
path: root/lib/libc/stdio/funlockfile.c
blob: 509e4eae7739ab2841cb86ce0dce4d19c8f152c3 (plain)
1
2
3
4
5
6
7
8
#include <__stdio.h>
#include <atomic.h>
#include <stdio.h>

void funlockfile(struct __FILE *file)
{
	LIBC_UNLOCK(file->lock);
}