shithub: scc

ref: 2bee5e38261775e54c94508a6955f0bbfa28e51c
dir: /src/libc/stdio/fputc.c/

View raw version
#include <stdio.h>

#undef fputc

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