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