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