shithub: scc

ref: 7c45822bbc135e3a3a1c4466a7821e40749f3ba6
dir: /src/libc/stdio/fputc.c/

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

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