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