shithub: scc

ref: 1ebd02c28ba4d5969e349942e2ec7334ca13d195
dir: /lib/c/fputc.c/

View raw version

#include <stdio.h>
#undef fputc

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