shithub: scc

ref: 0717542bba2021b87f92ab99fbd1851618e17da5
dir: /src/libc/stdio/fputc.c/

View raw version
#include <stdio.h>

#undef fputc

int
fputc(int c, FILE *fp)
{
	return putc(c, fp);
}