repo.or.cz
/
syslinux-debian
/
hramrach.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Adding upstream version 3.50~pre5.
[syslinux-debian/hramrach.git]
/
com32
/
lib
/
vsprintf.c
blob
4a6100e70cee653ce6e7766a766bf4438827ee77
1
/*
2
* vsprintf.c
3
*/
4
5
#include <stdio.h>
6
#include <unistd.h>
7
8
int
vsprintf
(
char
*
buffer
,
const char
*
format
,
va_list
ap
)
9
{
10
return
vsnprintf
(
buffer
, ~(
size_t
)
0
,
format
,
ap
);
11
}