shithub: front

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