diff options
Diffstat (limited to 'stdlib/drand48.c')
-rw-r--r-- | stdlib/drand48.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/drand48.c b/stdlib/drand48.c index 7fa6f33356..4668ead152 100644 --- a/stdlib/drand48.c +++ b/stdlib/drand48.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc. +/* Copyright (C) 1995, 1996, 1997, 1998 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@gnu.ai.mit.edu>, August 1995. @@ -27,7 +27,7 @@ drand48 () { double result; - (void) __erand48_r (__libc_drand48_data.X, &__libc_drand48_data, &result); + (void) __erand48_r (__libc_drand48_data.x, &__libc_drand48_data, &result); return result; } |