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