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