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

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