xref: /third_party/musl/src/stdio/fgetc.c (revision 570af302)
1#include <stdio.h>
2#include "getc.h"
3#include "stdio_impl.h"
4#ifndef __LITEOS__
5#include "param_check.h"
6#endif
7
8int fgetc(FILE *f)
9{
10#ifndef __LITEOS__
11	PARAM_CHECK(f);
12#endif
13	return do_getc(f);
14}
15