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