shithub: scc

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

View raw version
#include <stdio.h>

#undef fputc

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