summaryrefslogtreecommitdiff
path: root/src/stdio/setbuf.c
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2020-08-16 14:00:51 -0400
committerJakob Kaivo <jkk@ung.org>2020-08-16 14:00:51 -0400
commit896e28812c51b9ffdf3efc00c7d7ef699e380a58 (patch)
treeaaa25e093fb4a2ac4c57609e1f745e5ac0734ca8 /src/stdio/setbuf.c
parent0b0d1fe1d4fbf8560577d81e5af0549683eac8ba (diff)
formatting
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)
*/