shithub: scc

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

View raw version

#include <stdio.h>
#undef fputc

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