shithub: scc

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

View raw version

#include <stdio.h>
#undef fputc

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