shithub: plan9front

ref: 02b867f01eca1fefbe8b29205c8a8d4c13d2ffd0
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);
}