shithub: scc

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

View raw version

#include <stdio.h>
#undef fputc

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