ref: 33636932054f74c7a922a9713a9229d6d5fc7f38 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); }