ref: 50791b875552b0dc5748aa67c95776736f6ff4b7 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); }