shithub: scc

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

View raw version

#include <stdio.h>
#undef fputc

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