blob: 5225c1dadf0b4e485346ae2f09ed15227ef8cd44 [file] [log] [blame]
#include <limits.h>
#include <stdio.h>
int vsprintf(char* restrict s, const char* restrict fmt, va_list ap) {
return vsnprintf(s, INT_MAX, fmt, ap);
}