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