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