shithub: front

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