mirror of
https://github.com/fluencelabs/musl
synced 2025-05-29 23:51:34 +00:00
8 lines
135 B
C
8 lines
135 B
C
#include <stdio.h>
|
|
#include <limits.h>
|
|
|
|
int vsprintf(char *s, const char *fmt, va_list ap)
|
|
{
|
|
return vsnprintf(s, INT_MAX, fmt, ap);
|
|
}
|