shithub: front

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