Files
photon/libc/stdio/vsprintf.c

7 lines
142 B
C
Raw Permalink Normal View History

2020-04-03 19:21:22 +01:00
#include <stdio.h>
int vsprintf(char *buf, const char *restrict format, va_list arg)
{
return vsnprintf(buf, (size_t)-1, format, arg);
}