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