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