repo.or.cz
/
glibc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix powerpc abilist sort order
[glibc.git]
/
elf
/
unload3mod4.c
blob
52f808e79b76a2045e16093d114aa0a47732e3dc
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
}