shithub: scc

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

View raw version

#include <stdio.h>
#undef fputc

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