aboutsummaryrefslogtreecommitdiff
path: root/src/stdio/vdprintf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdio/vdprintf.c')
-rw-r--r--src/stdio/vdprintf.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/stdio/vdprintf.c b/src/stdio/vdprintf.c
index 3b9c093b..89bdc2db 100644
--- a/src/stdio/vdprintf.c
+++ b/src/stdio/vdprintf.c
@@ -9,3 +9,11 @@ int vdprintf(int fd, const char *restrict fmt, va_list ap)
};
return vfprintf(&f, fmt, ap);
}
+
+
+#ifdef TEST
+int
+main(void) {
+ return 0;
+}
+#endif