sourcehut
Log in
—
Register
~mcf
/
cproc
summary
tree
log
refs
ref:
16c718729adfaf40cf22aa4efeafb0d92ef5ee3c
cproc
/
test
/for-loop.c
-rw-r--r--
72 bytes
View
Log
Blame
View raw
16c71872
—
Michael Forney
Prepare for supporting architecture-specific va_list type
8 months ago
1
2
3
4
5
6
void
g
(
int
);
void
f
(
void
)
{
int
i
;
for
(
i
=
0
;
i
<
10
;
++
i
)
g
(
i
);
}