7836ccb26f088cd85dbbe82092cdad0fcf29106b
[musl] / vsprintf.c
1 #include <stdio.h>
2 #include <limits.h>
3
4 int vsprintf(char *s, const char *fmt, va_list ap)
5 {
6         return vsnprintf(s, INT_MAX, fmt, ap);
7 }