shithub: scc

ref: 9649f784e703493c96c77c0aef192554d77ff48b
dir: /lib/c/fputc.c/

View raw version

#include <stdio.h>
#undef fputc

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