fxlibc/src/libc/stdio/putc.c

8 lines
84 B
C
Raw Normal View History

2021-05-09 17:34:00 +02:00
#include <stdio.h>
2022-01-05 21:25:41 +01:00
#undef putc
2020-09-17 19:27:01 +02:00
2022-01-05 21:25:41 +01:00
int putc(int c, FILE *fp)
2020-09-17 19:27:01 +02:00
{
2022-01-05 21:25:41 +01:00
return fputc(c, fp);
2020-09-17 19:27:01 +02:00
}