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