shithub: scc

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

View raw version
#include <stdio.h>

#undef fputc

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