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