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
/
20001123-1.c
blob
59534480db26be743673dc08036c748120ae306a
1
2
typedef
__builtin_va_list __gnuc_va_list
;
3
typedef
__gnuc_va_list
va_list
;
4
5
struct
X
{
int
y
; };
6
7
void
func
(
va_list
va
)
8
{
9
char
*
a
=
__builtin_va_arg
(
va
,
char
**)[
0
];
10
int
b
=
__builtin_va_arg
(
va
,
struct
X
*)->
y
;
11
}