about summary refs log tree commit diff
path: root/elf/filter.c
diff options
context:
space:
mode:
Diffstat (limited to 'elf/filter.c')
-rw-r--r--elf/filter.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/elf/filter.c b/elf/filter.c
deleted file mode 100644
index 46aa15ba16..0000000000
--- a/elf/filter.c
+++ /dev/null
@@ -1,19 +0,0 @@
-#include <mcheck.h>
-#include <stdio.h>
-#include <string.h>
-
-extern const char *foo (void);
-
-int
-main (void)
-{
-  const char *s;
-
-  mtrace ();
-
-  s = foo ();
-
-  printf ("called `foo' from `%s'\n", s);
-
-  return strcmp (s, "filtmod2.c");
-}