repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Sync usage with man page.
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
inline-1.c
blob
23af7cb2bfc514c36cc6621a0a4d4a324dd479fc
1
typedef
__builtin_va_list
va_list
;
2
3
extern
void
foo
(
va_list
);
4
5
static void
6
build_message_string
(
const char
*
msg
, ...)
7
{
8
va_list
ap
;
9
10
__builtin_va_start
(
ap
,
msg
);
11
foo
(
ap
);
12
__builtin_va_end
(
ap
);
13
}
14
15
void
16
file_name_as_prefix
(
f
)
17
const char
*
f
;
18
{
19
build_message_string
(
"%s: "
,
f
);
20
}
21