ref: ac3147a9c58f339f9b978ab087464912c16bc8f8 dir: /sys/src/ape/lib/ap/stdio/fputc.c/
/* * pANS stdio -- fputc */ #include "iolib.h" int fputc(int c, FILE *f){ return putc(c, f); /* This can be made more fair to _IOLBF-mode streams */ }