shithub: scc

ref: f0d96fb56be96e04d26c17a7f7bbb6f6e53ef640
dir: /src/libc/stdio/fputc.c/

View raw version
#include <stdio.h>

#undef fputc

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