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