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

int getc(FILE *stream)
{
	return fgetc(stream);
}

weak_reference(getc, getc_unlocked);