shithub: scc

ref: 21749c7d900140b9075c00031a34cf2f7377becb
dir: /lib/c/fputc.c/

View raw version

#include <stdio.h>
#undef fputc

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