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