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