1
0
mirror of https://sourceware.org/git/glibc.git synced 2026-01-06 11:51:29 +03:00
* 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.
This commit is contained in:
Ulrich Drepper
2000-07-21 06:58:27 +00:00
parent f53c03c20d
commit fcacb36a0c
5 changed files with 35 additions and 2 deletions

14
elf/filter.c Normal file
View File

@@ -0,0 +1,14 @@
#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");
}