aboutsummaryrefslogtreecommitdiff
path: root/elf/tst-tls19mod1.c
diff options
context:
space:
mode:
Diffstat (limited to 'elf/tst-tls19mod1.c')
-rw-r--r--elf/tst-tls19mod1.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/elf/tst-tls19mod1.c b/elf/tst-tls19mod1.c
deleted file mode 100644
index 2790097ae5..0000000000
--- a/elf/tst-tls19mod1.c
+++ /dev/null
@@ -1,15 +0,0 @@
-#include <stdio.h>
-
-extern int bar (void);
-extern int baz (void);
-
-int
-foo (void)
-{
- int v1 = bar ();
- int v2 = baz ();
-
- printf ("bar=%d, baz=%d\n", v1, v2);
-
- return v1 != 666 || v2 != 42;
-}