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