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