shithub: scc

ref: 6cd7862223d13fd0897c3fafc213dccf874b7101
dir: /src/libc/stdio/fputc.c/

View raw version
#include <stdio.h>

#undef fputc

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