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
/
tst-deep1mod2.c
blob
b99caf03281711f097692093633d73f0a28c51a6
1
#include <stdio.h>
2
extern
int
baz
(
void
);
3
extern
int
xyzzy
(
void
);
4
int
5
bar
(
void
)
6
{
7
printf
(
"%s:%s
\n
"
,
__FILE__
,
__func__
);
8
return
baz
() +
xyzzy
();;
9
}
10
11
int
12
back
(
void
)
13
{
14
printf
(
"%s:%s
\n
"
,
__FILE__
,
__func__
);
15
return
-
1
;
16
}