blob: 5f39c9b32f160c822515e4ea0b22a0e63c306061 [file] [log] [blame]
#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);
}