shithub: scc

ref: 49dd90117de0e425438c060e8b492bbb6dbb5118
dir: /lib/c/fputc.c/

View raw version

#include <stdio.h>
#undef fputc

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