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
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
gcc.dg
/
compat
/
scalar-by-value-4_main.c
blob
8164b44283a0f8fee51c3898e49a7f538b37921b
1
/* Test passing scalars by value. This test includes _Complex types
2
whose real and imaginary parts cannot be used in variable-length
3
argument lists. */
4
5
extern
void
scalar_by_value_4_x
(
void
);
6
extern
void
exit
(
int
);
7
int
fails
;
8
9
int
10
main
()
11
{
12
scalar_by_value_4_x
();
13
exit
(
0
);
14
}