shithub: scc

ref: 7fee89eaa80658de4de6bd96cc479232bbcca627
dir: /lib/c/fputc.c/

View raw version

#include <stdio.h>
#undef fputc

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