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