repo.or.cz
/
binutils.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Rename switch to enable/disable -Werror to --enable-werror/--disable-werror
[binutils.git]
/
libiberty
/
vfprintf.c
blob
18f09d47d324771a38b8b78b2ba5bb8dcf777388
1
/* Provide a version vfprintf in terms of _doprnt.
2
By Kaveh Ghazi (ghazi@caip.rutgers.edu) 3/29/98
3
Copyright (C) 1998 Free Software Foundation, Inc.
4
*/
5
6
#include
"ansidecl.h"
7
#ifdef ANSI_PROTOTYPES
8
#include <stdarg.h>
9
#else
10
#include <varargs.h>
11
#endif
12
#include <stdio.h>
13
#undef vfprintf
14
15
int
16
vfprintf
(
stream
,
format
,
ap
)
17
FILE
*
stream
;
18
const char
*
format
;
19
va_list
ap
;
20
{
21
return
_doprnt
(
format
,
ap
,
stream
);
22
}