Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
/*
* pANS stdio -- putc
*/
#include "iolib.h"
#undef putc
int putc(int c, FILE *f){
return fputc(c, f);
}