1/* Test that the thread-local locale works right in the main thread
2 when statically linked. */
3
4#include "../locale/tst-C-locale.c"
5
6#include <pthread.h>
7#include <signal.h>
8
9/* This is never called, just here to get pthreads linked in. */
10int
11useless (void)
12{
13 pthread_t th;
14 pthread_create (newthread: &th, attr: 0, start_routine: (void *(*) (void *)) useless, arg: 0);
15 int result = 0;
16#ifdef SIGRTMIN
17 /* This is to check __libc_current_sigrt* can be used in statically
18 linked apps. */
19 result = SIGRTMIN;
20#endif
21 return result;
22}
23

source code of glibc/sysdeps/pthread/tst-locale1.c