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 parse_disassembler_option to parse_arm_disassembler_option and allow it
[binutils.git]
/
libiberty
/
vprintf.c
blob
65b425a4d6b2c977355b296a7bb4205cb3295798
1
#ifdef __STDC__
2
#include <stdarg.h>
3
#else
4
#include <varargs.h>
5
#endif
6
#include <stdio.h>
7
#include <ansidecl.h>
8
#undef vprintf
9
int
10
vprintf
(
format
,
ap
)
11
const char
*
format
;
12
va_list
ap
;
13
{
14
return
vfprintf
(
stdout
,
format
,
ap
);
15
}