Sign in
nest-open-source
/
stadia-controller
/
gcc-arm-none-eabi
/
refs/heads/master
/
.
/
src
/
gdb
/
ld
/
testsuite
/
ld-elf
/
dl2.c
blob: b5cd9275dab4947993f481a4796778aa3b9fc8bc [
file
] [
log
] [
blame
] [
edit
]
#include
<stdio.h>
int
foo
;
extern
void
xxx
(
void
);
void
bar
(
int
x
)
{
if
(
foo
==
1
)
printf
(
"OK1\n"
);
else
if
(
foo
==
0
)
printf
(
"OK2\n"
);
foo
=
-
1
;
xxx
();
}