shithub: scc

ref: 0fc1735500cec3c113a2ae30cb98e6de81fc2c51
dir: /lib/c/src/vsprintf.c/

View raw version

#include <limits.h>
#include <stdarg.h>
#include <stdio.h>
#undef vsprintf


int
vsprintf(char * restrict s, const char * restrict fmt, va_list va)
{
	return vsnprintf(s, SIZE_MAX, fmt, va);
}