shithub: scc

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

View raw version

#include <stdio.h>
#undef fputc

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