12345678910111213141516171819202122232425262728 |
- #include "_stdio.h"
- #include <stdio_ext.h>
- size_t __fpending(register FILE * __restrict stream)
- {
- __STDIO_STREAM_VALIDATE(stream);
- return (__STDIO_STREAM_IS_WRITING(stream))
- ? __STDIO_STREAM_BUFFER_WUSED(stream)
- : 0;
- }
|