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