shithub: scc

ref: 86b5e746d19539add2df370455006cfc4c679648
dir: /src/libc/stdio/fputc.c/

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

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