shithub: scc

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

View raw version

#include <stdio.h>
#undef fputc

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