shithub: scc

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

View raw version

#include <stdio.h>
#undef fputc

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