- Cleanup the /lib directory, by putting more 3rd-party libs in /3rdparty, and by...
[reactos.git] / reactos / lib / sdk / crt / stdio / fputc.c
1 /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
2 #include <precomp.h>
3
4 #include <wchar.h>
5
6 /*
7 * @implemented
8 */
9 int
10 fputc(int c, FILE *fp)
11 {
12 return putc(c, fp);
13 }
14
15 /*
16 * @implemented
17 */
18 wint_t
19 fputwc(wchar_t c, FILE *fp)
20 {
21 return putwc(c,fp);
22 }
23
24