summaryrefslogtreecommitdiff
path: root/libc/nptl/tst-locale1.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/nptl/tst-locale1.c')
-rw-r--r--libc/nptl/tst-locale1.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/libc/nptl/tst-locale1.c b/libc/nptl/tst-locale1.c
new file mode 100644
index 000000000..08b43704e
--- /dev/null
+++ b/libc/nptl/tst-locale1.c
@@ -0,0 +1,17 @@
+/* Test that the thread-local locale works right in the main thread
+ when statically linked. */
+
+#include "../locale/tst-C-locale.c"
+
+#include <pthread.h>
+#include <signal.h>
+
+/* This is never called, just here to get pthreads linked in. */
+int
+useless (void)
+{
+ pthread_create (0, 0, 0, 0);
+ /* This is to check __libc_current_sigrt* can be used in statically
+ linked apps. */
+ return SIGRTMIN;
+}