shithub: scc

ref: 5c514c971adaf928ffde1832f949db834f990dc6
dir: /lib/c/fputc.c/

View raw version

#include <stdio.h>
#undef fputc

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