summaryrefslogtreecommitdiff
path: root/src/stdio/fgetc.c
blob: 65a10fa61777b164daab818595c53cf496e7194c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "stdio_impl.h"

int fgetc(FILE *f)
{
	int c;
	if (f->lock < 0 || !__lockfile(f))
		return getc_unlocked(f);
	c = getc_unlocked(f);
	__unlockfile(f);
	return c;
}

weak_alias(fgetc, getc);
weak_alias(fgetc, _IO_getc);