summaryrefslogtreecommitdiff
path: root/userland/libc/stdio/vprintf.c
diff options
context:
space:
mode:
Diffstat (limited to 'userland/libc/stdio/vprintf.c')
-rw-r--r--userland/libc/stdio/vprintf.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/userland/libc/stdio/vprintf.c b/userland/libc/stdio/vprintf.c
index 8a8dc33..c06e9f9 100644
--- a/userland/libc/stdio/vprintf.c
+++ b/userland/libc/stdio/vprintf.c
@@ -1,3 +1,5 @@
#include <stdio.h>
-int vprintf(const char *format, va_list ap) { return vdprintf(1, format, ap); }
+int vprintf(const char *format, va_list ap) {
+ return vdprintf(1, format, ap);
+}