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