musl-tcc/src/stdio/fputc.c

8 lines
91 B
C

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