repo.or.cz
/
minix3.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
at_wini also needs a pci_reserve() for the pci compatability device, if
[minix3.git]
/
lib
/
stdio
/
vprintf.c
blob
a123cf24cd07c3394d67749d740ff1bf469ee59c
1
/*
2
* vprintf - formatted output without ellipsis to the standard output stream
3
*/
4
/* $Header$ */
5
6
#include <stdio.h>
7
#include <stdarg.h>
8
#include
"loc_incl.h"
9
10
int
11
vprintf
(
const char
*
format
,
va_list
arg
)
12
{
13
return
_doprnt
(
format
,
arg
,
stdout
);
14
}