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