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