repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2011-05-23 Tom de Vries <tom@codesourcery.com>
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
iso_c_binding_rename_1_driver.c
blob
26c21d912e58051650f1a57cde36ea15b09f69fc
1
void
sub0
(
int
);
2
void
sub1
(
int
*);
3
void
sub2
(
int
,
long
);
4
void
sub3
(
int
*,
int
*);
5
void
sub4
(
int
*,
int
*);
6
7
int
main
(
int
argc
,
char
**
argv
)
8
{
9
int
i
=
1
;
10
long
j
=
1
;
11
12
sub0
(
i
);
13
sub1
(&
i
);
14
sub2
(
i
,
j
);
15
sub3
(&
i
, &
i
);
16
sub4
(&
i
, &
i
);
17
18
return
0
;
19
}