shithub: scc

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

View raw version

#include <stdio.h>
#undef fputc

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