shithub: scc

ref: 355f73cb919d009d7527b5083ae8341f0ceea97d
dir: /src/libc/stdio/fputc.c/

View raw version
#include <stdio.h>

#undef fputc

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