amiga-libnix3/stdio/fputc.c

5 lines
77 B
C

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