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