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