summaryrefslogtreecommitdiff
path: root/com32/lib/vsprintf.c
blob: 8df621303663152b66a3c81674913d1e5507bbb2 (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);
}