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