shithub: scc

ref: 1156d6a42e3a86badbda9c894bee1be97aed7923
dir: /src/libc/stdio/fputc.c/

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

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