aboutsummaryrefslogtreecommitdiff
path: root/elf/tst-piemod1.c
diff options
context:
space:
mode:
Diffstat (limited to 'elf/tst-piemod1.c')
-rw-r--r--elf/tst-piemod1.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/elf/tst-piemod1.c b/elf/tst-piemod1.c
deleted file mode 100644
index 72d7e0a187..0000000000
--- a/elf/tst-piemod1.c
+++ /dev/null
@@ -1,22 +0,0 @@
-#include <stdio.h>
-
-int
-foo (void)
-{
- return 21;
-}
-
-static int
-do_test (void)
-{
- int val = foo ();
- if (val != 34)
- {
- printf ("foo () returned %d\n", val);
- return 1;
- }
-
- return 0;
-}
-
-#include <support/test-driver.c>