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