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