mirror of
https://git.FreeBSD.org/src.git
synced 2024-11-27 08:00:11 +00:00
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
|
|
};
|