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
Update Changelog and NEWS
[glibc.git]
/
elf
/
filter.c
blob
46aa15ba165dc3082d459c12f4aaf0064c32d8c9
1
#include <mcheck.h>
2
#include <stdio.h>
3
#include <string.h>
4
5
extern
const char
*
foo
(
void
);
6
7
int
8
main
(
void
)
9
{
10
const char
*
s
;
11
12
mtrace
();
13
14
s
=
foo
();
15
16
printf
(
"called `foo' from `%s'
\n
"
,
s
);
17
18
return
strcmp
(
s
,
"filtmod2.c"
);
19
}