Gitiles
Code Review
Sign In
192.168.1.100
/
T106_DC
/
bdd93d52cf43d2991561d70e238bf11e422b794b
/
.
/
ap
/
libc
/
glibc
/
glibc-2.23
/
elf
/
unload3mod4.c
blob: 52f808e79b76a2045e16093d114aa0a47732e3dc [
file
] [
log
] [
blame
]
lh
9ed821d
2023-04-07 01:36:19 -0700
[
diff
] [
blame
]
1
#include
<stdio.h>
2
3
extern
int
foo
(
int
x
);
4
5
int
6
bar
(
int
x
)
7
{
8
puts
(
"bar"
);
9
fflush
(
stdout
);
10
x
=
foo
(
x
-
4
);
11
puts
(
"bar after foo"
);
12
return
x
;
13
}