summaryrefslogtreecommitdiff
path: root/sys/src/ape/lib/ap/stdio/fgetc.c
blob: 08c5ad03b4d5b0b6a0d34d0fe659924491d20208 (plain)
1
2
3
4
5
6
7
/*
 * pANS stdio -- fgetc
 */
#include "iolib.h"
int fgetc(FILE *f){
	return getc(f);
}