diff options
Diffstat (limited to 'lib/libc/stdlib/erand48.c')
-rw-r--r-- | lib/libc/stdlib/erand48.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/stdlib/erand48.c b/lib/libc/stdlib/erand48.c index 2ffeaa6e710..20d6a2dd690 100644 --- a/lib/libc/stdlib/erand48.c +++ b/lib/libc/stdlib/erand48.c @@ -1,4 +1,4 @@ -/* $OpenBSD: erand48.c,v 1.3 2005/08/08 08:05:36 espie Exp $ */ +/* $OpenBSD: erand48.c,v 1.4 2015/09/13 08:31:47 guenther Exp $ */ /* * Copyright (c) 1993 Martin Birgmeier * All rights reserved. @@ -22,3 +22,4 @@ erand48(unsigned short xseed[3]) ldexp((double) xseed[1], -32) + ldexp((double) xseed[2], -16); } +DEF_WEAK(erand48); |