diff options
Diffstat (limited to 'elf/tst-tls2.c')
-rw-r--r-- | elf/tst-tls2.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/elf/tst-tls2.c b/elf/tst-tls2.c index 417489968e..3d13272c08 100644 --- a/elf/tst-tls2.c +++ b/elf/tst-tls2.c @@ -3,21 +3,18 @@ #include <tls.h> -#ifdef USE_TLS -# include "tls-macros.h" +#include "tls-macros.h" /* Two 'int' variables in TLS. */ VAR_INT_DEF(foo); VAR_INT_DEF(bar); -#endif #define TEST_FUNCTION do_test () static int do_test (void) { -#ifdef USE_TLS int result = 0; int *ap, *bp; @@ -82,9 +79,6 @@ do_test (void) } return result; -#else - return 0; -#endif } |