cleanup types stuff in headers, fix missing u_int*_t in sys/types.h
[musl] / src / stdio / __fpending.c
1 #include "stdio_impl.h"
2
3 size_t __fpending(FILE *f)
4 {
5         return f->wend ? f->wpos - f->wbase : 0;
6 }