repo.or.cz
/
minix3.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Remove building with NOCRYPTO option
[minix3.git]
/
lib
/
libc
/
gdtoa
/
gdtoa_locks.c
blob
af02c089753f32c961e5cafc389fac4fb6596e89
1
/* $NetBSD: gdtoa_locks.c,v 1.2 2015/01/20 18:31:25 christos Exp $ */
2
3
/*
4
* Written by Klaus Klein <kleink@NetBSD.org>, November 16, 2005.
5
* Public domain.
6
*/
7
8
#include
"gdtoaimp.h"
9
10
#ifdef _REENTRANT
11
mutex_t __gdtoa_locks
[
2
] = {
MUTEX_INITIALIZER
,
MUTEX_INITIALIZER
};
12
#endif