shithub: scc

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

View raw version

#include <stdio.h>
#undef fputc

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