musl-tcc/src/stdio/fputc.c

8 lines
91 B
C
Raw Permalink Normal View History

2022-03-20 08:48:53 +00:00
#include <stdio.h>
#include "putc.h"
int fputc(int c, FILE *f)
{
return do_putc(c, f);
}