shithub: scc

ref: 2c2418c44c0004a67f74c754790cfdfbb01907a7
dir: /lib/c/fputc.c/

View raw version

#include <stdio.h>
#undef fputc

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