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
]
#include
<stdio.h>
extern
int
foo
(
int
x
);
int
bar
(
int
x
)
{
puts
(
"bar"
);
fflush
(
stdout
);
x
=
foo
(
x
-
4
);
puts
(
"bar after foo"
);
return
x
;
}