blob: 2c803e3ef00f29de226600316001721540f6b635 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* 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)
{
pthread_create (0, 0, 0, 0);
}
|