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