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