shithub: plan9front

ref: 95c166fc35a918337c6958c7ae9e6b6214ad9c07
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);
}