shithub: scc

ref: 8445aa34b12fc07d8bb64247dd8a6ebada174dfe
dir: /src/libc/stdio/fputc.c/

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

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