shithub: front

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