shithub: scc

ref: d5e318f45b7ae6fc2ed814c158d8e887ea0c1619
dir: /lib/c/fputc.c/

View raw version

#include <stdio.h>
#undef fputc

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