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