shithub: scc

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

View raw version
#include <stdio.h>

#undef fputc

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