fxlibc/src/stdio/vsprintf.c

7 lines
144 B
C
Raw Normal View History

2020-09-17 19:27:01 +02:00
#include <stdio.h>
int vsprintf(char *restrict str, const char *restrict format, va_list ap)
{
return (vsnprintf(str, 65535, format, ap));
}