shithub: scc

ref: 547c5c8703133571adfcba5da8adc5df512229fa
dir: /src/libc/stdio/fputc.c/

View raw version
#include <stdio.h>

#undef fputc

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