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