xref
: /
netbsd-src
/
sys
/
external
/
bsd
/
compiler_rt
/
dist
/
test
/
profile
/
Inputs
/
gcc-flag-compatibility.c
(revision ef84fd3bd8895f4e6be1e38baf19e6dc3255bc64)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
int
X
= 0;
2
main()
3
int
main
() {
4
int
i
;
5
for
(
i
= 0;
i
<
100
;
i
++)
6
X
+=
i
;
7
return
0;
8
}
9