shithub: scc

ref: a0ff31c2362324edf915883b2faa324377be1b4a
dir: /src/libc/stdio/fputc.c/

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

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