1234567891011121314151617181920212223242526 |
- #include "_stdio.h"
- #ifdef __USE_BSD
- void setbuffer(FILE * __restrict stream, register char * __restrict buf,
- size_t size)
- {
- #ifdef __STDIO_BUFFERS
- setvbuf(stream, buf, (buf ? _IOFBF : _IONBF), size);
- #endif
- }
- #endif
|