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