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