use a more-correct integer type, and silence 64-bit warnings as a bonus
[musl] / src / stdio / __uflow.c
1 #include "stdio_impl.h"
2
3 int __uflow(FILE *f)
4 {
5         if (__underflow(f) < 0) return EOF;
6         else return *f->rpos++;
7 }