aboutsummaryrefslogtreecommitdiff
path: root/src/stdio/fgetc.c
blob: b7d02339c08ec1420a58729a90c7b5ac5b91187e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <stdio.h>
#include "getc.h"

int fgetc(FILE *f)
{
	return do_getc(f);
}


#ifdef TEST
int
main(void) {
	return 0;
}
#endif