shithub: front

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