ref: 4ebf90dff07e3ada0cc4e26efbb0064542c0d4c9 dir: /sys/src/ape/lib/ap/stdio/putc.c/
/* * pANS stdio -- putc */ #include "iolib.h" #undef putc int putc(int c, FILE *f){ return fputc(c, f); }