shithub: plan9front

ref: 9923ea348c75bf33754508e9d2a61e537e7c79d1
dir: /sys/src/libstdio/putc.c/

View raw version
/*
 * pANS stdio -- putc
 */
#include "iolib.h"
#undef putc
int putc(int c, FILE *f){
	return fputc(c, f);
}