diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2015-08-27 04:33:32 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2015-08-27 04:33:32 +0000 |
commit | beb50e1c8dd60e053bc56c0c260ee76dffa3d996 (patch) | |
tree | efc3f78fb71f9a91a7e8c1331eead34325388577 /lib/libc/stdlib/mrand48.c | |
parent | 74cd7160c65651d22eaec9fab68336919ecfd243 (diff) |
Move the __rand48_* declarations into rand48.h, and then hide both them
and __dorand48() and __rand48_deterministic
ok deraadt@
Diffstat (limited to 'lib/libc/stdlib/mrand48.c')
-rw-r--r-- | lib/libc/stdlib/mrand48.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/libc/stdlib/mrand48.c b/lib/libc/stdlib/mrand48.c index 0568a7ff93e..3334e2ad2b4 100644 --- a/lib/libc/stdlib/mrand48.c +++ b/lib/libc/stdlib/mrand48.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mrand48.c,v 1.5 2014/12/09 00:02:18 tedu Exp $ */ +/* $OpenBSD: mrand48.c,v 1.6 2015/08/27 04:33:31 guenther Exp $ */ /* * Copyright (c) 1993 Martin Birgmeier * All rights reserved. @@ -14,8 +14,6 @@ #include "rand48.h" -extern unsigned short __rand48_seed[3]; - long mrand48(void) { |