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
hppa64: Fix fmt_f_default_field_width_3.f90 and fmt_g_default_field_width_3.f90
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
iso_c_binding_rename_2_driver.c
blob
8be704c341b64d9f7c285d6125009e830a19a195
1
void
sub2
(
int
**);
2
void
sub3
(
int
**);
3
void
sub4
(
int
**);
4
5
int
main
(
int
argc
,
char
**
argv
)
6
{
7
int
i
=
1
;
8
int
*
ptr
;
9
10
ptr
= &
i
;
11
sub2
(&
ptr
);
12
sub3
(&
ptr
);
13
sub4
(&
ptr
);
14
15
return
0
;
16
}