git: 9front

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