shithub: plan9front

ref: d6ce7969ede52e1b36e57f4d0ee98ca18a380cf4
dir: /sys/src/ape/lib/ap/stdio/putc.c/

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