summaryrefslogtreecommitdiff
path: root/sys/src/ape/lib/ap/stdio/fputc.c
blob: 0a482e20c8dd0d96f95fd91b25d75205d42704a2 (plain)
1
2
3
4
5
6
7
/*
 * pANS stdio -- fputc
 */
#include "iolib.h"
int fputc(int c, FILE *f){
	return putc(c, f);	/* This can be made more fair to _IOLBF-mode streams */
}