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