fxlibc/src/libc/stdio/putc.c

8 lines
84 B
C

#include <stdio.h>
#undef putc
int putc(int c, FILE *fp)
{
return fputc(c, fp);
}