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