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
Make __ffs hidden
[glibc.git]
/
elf
/
tst-deep1mod3.c
blob
eee7d5c97b627efbf2ac20816955d421adb6dd9a
1
#include <stdio.h>
2
3
extern
int
back
(
void
);
4
5
int
6
baz
(
void
)
7
{
8
printf
(
"%s:%s
\n
"
,
__FILE__
,
__func__
);
9
return
back
();
10
}
11
12
int
13
xyzzy
(
void
)
14
{
15
printf
(
"%s:%s
\n
"
,
__FILE__
,
__func__
);
16
return
0
;
17
}