d086ded323
Use the latter for gdtoa. Requested by: deischen (far too long ago)
14 lines
221 B
C
14 lines
221 B
C
/*
|
|
* Machine-independent glue to integrate David Gay's gdtoa
|
|
* package into libc.
|
|
*
|
|
* $FreeBSD$
|
|
*/
|
|
|
|
#include <pthread.h>
|
|
|
|
pthread_mutex_t __gdtoa_locks[] = {
|
|
PTHREAD_MUTEX_INITIALIZER,
|
|
PTHREAD_MUTEX_INITIALIZER
|
|
};
|