aboutsummaryrefslogtreecommitdiff
path: root/src/stdio/vsprintf.c
blob: 7c692f0c3621ecc2b3e6dde4a57063b58cacbaad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <stdio.h>
#include <limits.h>

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


#ifdef TEST
int
main(void) {
	return 0;
}
#endif