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