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