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