shithub: scc

ref: 015d343c41900f127914b3f0345353c9b0deff77
dir: /src/libc/stdio/fputc.c/

View raw version
#include <stdio.h>
#undef fputc

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