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