diff options
| author | christos <christos@NetBSD.org> | 2003-01-18 17:20:04 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 2003-01-18 17:20:04 +0000 |
| commit | af26d1a576b79876b2ecb17b4574ee72d13f8a7a (patch) | |
| tree | a7e9704420ed2b75a579bb258ed674c79f7ca6ff /lib/libc/stdlib | |
| parent | c6e0fe9a2bccb60b5e708539aae56a9ae6096780 (diff) | |
s/_REENT/_REENTRANT/
Diffstat (limited to 'lib/libc/stdlib')
| -rw-r--r-- | lib/libc/stdlib/random.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/stdlib/random.c b/lib/libc/stdlib/random.c index ffd5ab1912b..bd2423827f5 100644 --- a/lib/libc/stdlib/random.c +++ b/lib/libc/stdlib/random.c @@ -1,4 +1,4 @@ -/* $NetBSD: random.c,v 1.20 2002/01/08 02:11:39 thorpej Exp $ */ +/* $NetBSD: random.c,v 1.21 2003/01/18 17:20:04 christos Exp $ */ /* * Copyright (c) 1983, 1993 @@ -38,7 +38,7 @@ #if 0 static char sccsid[] = "@(#)random.c 8.2 (Berkeley) 5/19/95"; #else -__RCSID("$NetBSD: random.c,v 1.20 2002/01/08 02:11:39 thorpej Exp $"); +__RCSID("$NetBSD: random.c,v 1.21 2003/01/18 17:20:04 christos Exp $"); #endif #endif /* LIBC_SCCS and not lint */ @@ -59,7 +59,7 @@ __weak_alias(srandom,_srandom) static void srandom_unlocked __P((unsigned int)); static long random_unlocked __P((void)); -#ifdef _REENT +#ifdef _REENTRANT static mutex_t random_mutex = MUTEX_INITIALIZER; #endif |
