musl/src/stdio/__fpending.c
2011-02-12 00:22:29 -05:00

6 lines
98 B
C

#include "stdio_impl.h"
size_t __fpending(FILE *f)
{
return f->wend ? f->wpos - f->wbase : 0;
}