summaryrefslogtreecommitdiff
path: root/src/stdio/setbuf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdio/setbuf.c')
-rw-r--r--src/stdio/setbuf.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/stdio/setbuf.c b/src/stdio/setbuf.c
index 351db3d3..1efa8ea1 100644
--- a/src/stdio/setbuf.c
+++ b/src/stdio/setbuf.c
@@ -1,6 +1,7 @@
#include <stdio.h>
/** specify file stream buffer **/
+
void setbuf(FILE * restrict stream, char * restrict buf)
{
if (buf) {
@@ -19,6 +20,7 @@ If ARGUMENT(buf) is CONSTANT(NULL), ARGUMENT(stream) will become unbuffered. It
equivalent of:
LITERAL(setvbuf(stream, NULL, _IONBF, 0);)
***/
+
/*
STDC(1)
*/