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