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