shithub: front

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