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