shithub: front

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