shithub: scc

ref: 22e63b76976fd232a2e40e30845d35eca6325b02
dir: /lib/c/fputc.c/

View raw version

#include <stdio.h>
#undef fputc

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