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