shithub: scc

ref: 1db863722e91ee927e932eb6ba65637842e96098
dir: /src/libc/stdio/fputc.c/

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

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