shithub: scc

ref: 83313d4505acea160478ef7bf2c60645e3cec526
dir: /src/libc/stdio/fputc.c/

View raw version
#include <stdio.h>
#undef fputc

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