16 lines
319 B
C
16 lines
319 B
C
/* Test that the thread-local locale works right in the main thread
|
|
when statically linked. */
|
|
|
|
#include "../argp/tst-argp1.c"
|
|
|
|
#include <pthread.h>
|
|
|
|
/* This is never called, just here to get pthreads linked in. */
|
|
void *
|
|
useless (void *a)
|
|
{
|
|
pthread_t th;
|
|
pthread_create (&th, 0, useless, a);
|
|
return NULL;
|
|
}
|