]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - elf/tst-tls4.c
Update copyright dates not handled by scripts/update-copyrights.
[thirdparty/glibc.git] / elf / tst-tls4.c
index 32ec147420fe099c1d4be237e977780ad3af4176..6841f8138660d140bcb77236b8be39d0e2a6249f 100644 (file)
@@ -2,22 +2,10 @@
 #include <stdio.h>
 #include <stdlib.h>
 
-#include <tls.h>
 
-#ifdef USE_TLS
-# include "tls-macros.h"
-
-/* This gives the executable a TLS segment so that even if the libc.so
-   it loads has none (i.e. --with-tls --without-__thread), ld.so will
-   permit loading of objects with TLS segments.  */
-COMMON_INT_DEF(loser);
-#endif
-
-#define TEST_FUNCTION do_test ()
 static int
 do_test (void)
 {
-#ifdef USE_TLS
   static const char modname[] = "tst-tlsmod2.so";
   int result = 0;
   int *foop;
@@ -55,10 +43,7 @@ do_test (void)
   dlclose (h);
 
   return result;
-#else
-  return 0;
-#endif
 }
 
 
-#include "../test-skeleton.c"
+#include <support/test-driver.c>