]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - nptl/tst-locale1.c
Add per-thread cache to malloc
[thirdparty/glibc.git] / nptl / tst-locale1.c
index 2ee4c3fbce91081b597c8726d283c8bbd6d071c3..887b9a6dd702cffea9f1ad301b3d39760d918681 100644 (file)
@@ -12,7 +12,11 @@ useless (void)
 {
   pthread_t th;
   pthread_create (&th, 0, (void *(*) (void *)) useless, 0);
+  int result = 0;
+#ifdef SIGRTMIN
   /* This is to check __libc_current_sigrt* can be used in statically
      linked apps.  */
-  return SIGRTMIN;
+  result = SIGRTMIN;
+#endif
+  return result;
 }