glibc/elf/filter.c
Ulrich Drepper fcacb36a0c Update.
* elf/Makefile (tests): Add filter.  Add rules to generate filter.
	* elf/filter.c: New file.
	* elf/filtmod1.c: New file.
	* elf/filtmod2.c: New file.
2000-07-21 06:58:27 +00:00

15 lines
197 B
C

#include <stdio.h>
#include <string.h>
extern const char *foo (void);
int
main (void)
{
const char *s = foo ();
printf ("called `foo' from `%s'\n", s);
return strcmp (s, "filtmod2.c");
}