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