shithub: scc

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

View raw version

#include <stdio.h>
#undef fputc

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