aboutsummaryrefslogtreecommitdiffstats
path: root/com32/lib/vsprintf.c
blob: 4a6100e70cee653ce6e7766a766bf4438827ee77 (plain)
1
2
3
4
5
6
7
8
9
10
11
/*
 * vsprintf.c
 */

#include <stdio.h>
#include <unistd.h>

int vsprintf(char *buffer, const char *format, va_list ap)
{
  return vsnprintf(buffer, ~(size_t)0, format, ap);
}