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