shithub: plan9front

ref: 2a907fd4597d57d94fdf573f37c1d553318a7104
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);
}