shithub: scc

ref: 2d60e8ab6926bc6850e5299182747c314e2589ce
dir: /lib/c/fputc.c/

View raw version

#include <stdio.h>
#undef fputc

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