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