shithub: scc

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

View raw version

#include <stdio.h>
#undef fputc

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