projects
/
deliverable
/
binutils-gdb.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
2000-04-26 Michael Snyder <msnyder@seadog.cygnus.com>
[deliverable/binutils-gdb.git]
/
libiberty
/
vprintf.c
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
}
This page took
0.0374719999999999 seconds
and
4
git commands to generate.