Sign in
android
/
platform
/
external
/
rust
/
crates
/
gdbstub
/
dc32fd4ceaddc2bb90fc05d1e0a55e89caaf96d3
/
.
/
examples
/
armv4t
/
test_bin
/
test.c
blob: 6fb75aad2e2b4a9229eb13acd6dfd809ab7dff7e [
file
] [
log
] [
blame
]
int
main
()
{
int
x
=
4
;
int
y
=
3
;
x
+=
1
;
y
+=
3
;
// big, useless loop to test ctrl-c functionality
for
(
int
i
=
0
;
i
<
1024
*
32
;
i
++)
{
x
+=
1
;
}
return
x
;
}