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