diff options
Diffstat (limited to 'libc/stdio/setbuf.c')
-rw-r--r-- | libc/stdio/setbuf.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/libc/stdio/setbuf.c b/libc/stdio/setbuf.c new file mode 100644 index 000000000..21158638b --- /dev/null +++ b/libc/stdio/setbuf.c @@ -0,0 +1,15 @@ +/* Copyright (C) 2004 Manuel Novoa III <mjn3@codepoet.org> + * + * GNU Library General Public License (LGPL) version 2 or later. + * + * Dedicated to Toni. See uClibc/DEDICATION.mjn3 for details. + */ + +#include "_stdio.h" + +void setbuf(FILE * __restrict stream, register char * __restrict buf) +{ +#ifdef __STDIO_BUFFERS + setvbuf(stream, buf, ((buf != NULL) ? _IOFBF : _IONBF), BUFSIZ); +#endif +} |