aboutsummaryrefslogtreecommitdiff
path: root/src/core/snprintf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/snprintf.c')
-rw-r--r--src/core/snprintf.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core/snprintf.c b/src/core/snprintf.c
index 574d537a..004916a2 100644
--- a/src/core/snprintf.c
+++ b/src/core/snprintf.c
@@ -34,3 +34,9 @@ nni_snprintf(char *dst, size_t sz, const char *fmt, ...)
nni_vsnprintf(dst, sz, fmt, va);
va_end(va);
}
+
+void
+nni_vsnprintf(char *dst, size_t sz, const char *fmt, va_list va)
+{
+ nni_plat_vsnprintf(dst, sz, fmt, va);
+}