shithub: scc

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

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

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