xref: /third_party/musl/src/stdio/getc.c
  • Home
  • History
  • Annotate Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
  • only in /third_party/musl/src/stdio/
1570af302Sopenharmony_ci#include <stdio.h>
2570af302Sopenharmony_ci#include "getc.h"
3570af302Sopenharmony_ci#ifndef __LITEOS__
4570af302Sopenharmony_ci#include "param_check.h"
5570af302Sopenharmony_ci#endif
6570af302Sopenharmony_ci
7570af302Sopenharmony_ciint getc(FILE *f)
8570af302Sopenharmony_ci{
9570af302Sopenharmony_ci#ifndef __LITEOS__
10570af302Sopenharmony_ci	PARAM_CHECK(f);
11570af302Sopenharmony_ci#endif
12570af302Sopenharmony_ci	return do_getc(f);
13570af302Sopenharmony_ci}
14570af302Sopenharmony_ci
15570af302Sopenharmony_ciweak_alias(getc, _IO_getc);
16

Indexes created Thu Nov 07 10:32:03 CST 2024