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