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