shithub: scc

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

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

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