shithub: scc

ref: 68337316883089a65169e2aa3f0289acc08a9627
dir: /src/libc/stdio/fputc.c/

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

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