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