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