mirror of
https://github.com/fluencelabs/musl
synced 2025-05-23 04:31:32 +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);
|
||
|
}
|