ref: 83313d4505acea160478ef7bf2c60645e3cec526 dir: /src/libc/stdio/fputc.c/
#include <stdio.h> #undef fputc int fputc(int c, FILE *fp) { return putc(c, fp); }