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