summaryrefslogtreecommitdiff
path: root/src/stdio/vsnprintf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdio/vsnprintf.c')
-rw-r--r--src/stdio/vsnprintf.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/stdio/vsnprintf.c b/src/stdio/vsnprintf.c
new file mode 100644
index 00000000..7c5a1e03
--- /dev/null
+++ b/src/stdio/vsnprintf.c
@@ -0,0 +1,10 @@
+#include <stdio.h>
+#include "stdarg.h"
+
+int vsnprintf(char * restrict s, size_t n, va_list ap)
+{
+}
+
+/*
+STDC(199901)
+*/