repo.or.cz
/
syslinux.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
hdt: Dumping ACPI structures
[syslinux.git]
/
com32
/
lib
/
vprintf.c
blob
486f7200ab45a07931c30b184155f5d5fef160de
1
/*
2
* vprintf.c
3
*/
4
5
#include <stdio.h>
6
#include <stdarg.h>
7
8
int
vprintf
(
const char
*
format
,
va_list
ap
)
9
{
10
return
vfprintf
(
stdout
,
format
,
ap
);
11
}