shithub: scc

ref: 0b20b4df7d25445bbfbf4d307ffc9ed57dd72ac8
dir: /lib/c/fputc.c/

View raw version

#include <stdio.h>
#undef fputc

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