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