shithub: plan9front

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