Plan 9 from Bell Labs’s /usr/web/sources/plan9/sys/src/libstdio/putc.c
/* * pANS stdio -- putc */ #include "iolib.h" #undef putc int putc(int c, FILE *f){ return fputc(c, f); }