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