amiga-libnix3/stdio/putc.c

9 lines
91 B
C

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