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