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