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