summaryrefslogtreecommitdiff
path: root/lib/libc/stdio/getc_unlocked.c
blob: 1fc46d0a03da2228bf9feabeaeb8bf2f9835b6a0 (plain)
1
2
3
4
5
6
#include <stdio.h>

int getc_unlocked(FILE *stream)
{
	return fgetc_unlocked(stream);
}