shithub: scc

ref: 2605b26a91d34983201cf0e7c643e28eda4cb159
dir: /lib/c/fputc.c/

View raw version

#include <stdio.h>
#undef fputc

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