1#include "stdio_impl.h"
23/* This function assumes it will never be called if there is already
4 * data buffered for reading. */5__uflow(FILE * f)6int__uflow(FILE* f) {7unsignedcharc;
8if (!__toread(f) && f->read(f, &c, 1) == 1)
9returnc;
10returnEOF;
11}
12