summaryrefslogblamecommitdiff
path: root/src/stdio/vsprintf.c
blob: 7836ccb26f088cd85dbbe82092cdad0fcf29106b (plain) (tree)
1
2
3
4
5
6
7






                                                  
#include <stdio.h>
#include <limits.h>

int vsprintf(char *s, const char *fmt, va_list ap)
{
	return vsnprintf(s, INT_MAX, fmt, ap);
}