blob: b2be99b3763e76010a90a366bc838311c9d9da44 [file] [log] [blame]
#include <stdio.h>
#include "starboard/string.h"
#if SB_API_VERSION < 16
int vsnprintf(char *restrict s, size_t n, const char *restrict fmt, va_list ap) {
return SbStringFormat(s, n, fmt, ap);
}
#endif