repo.or.cz
/
minix.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
isblank() implementation.
[minix.git]
/
lib
/
libc
/
stdio
/
vfprintf.c
blob
e7c0e08063dc600ca095df9c72c79f2002c7bbb6
1
/*
2
* vfprintf - formatted output without ellipsis
3
*/
4
/* $Header$ */
5
6
#include <stdio.h>
7
#include <stdarg.h>
8
#include
"loc_incl.h"
9
10
int
11
vfprintf
(
FILE
*
stream
,
const char
*
format
,
va_list
arg
)
12
{
13
return
_doprnt
(
format
,
arg
,
stream
);
14
}