ref: 86a77e5088d11c5921d735b14d83441d0fc9d2bc dir: /sys/src/libstdio/putc.c/
/* * pANS stdio -- putc */ #include "iolib.h" #undef putc int putc(int c, FILE *f){ return fputc(c, f); }