summaryrefslogtreecommitdiff
path: root/userland/libc/stdio/setvbuf.c
diff options
context:
space:
mode:
Diffstat (limited to 'userland/libc/stdio/setvbuf.c')
-rw-r--r--userland/libc/stdio/setvbuf.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/userland/libc/stdio/setvbuf.c b/userland/libc/stdio/setvbuf.c
new file mode 100644
index 0000000..7f91518
--- /dev/null
+++ b/userland/libc/stdio/setvbuf.c
@@ -0,0 +1,6 @@
+#include <stdio.h>
+
+int setvbuf(FILE *restrict stream, char *restrict buf, int type, size_t size) {
+ // TODO
+ return 0;
+}