diff options
Diffstat (limited to 'stdlib/erand48.c')
-rw-r--r-- | stdlib/erand48.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/erand48.c b/stdlib/erand48.c index 345fca3f5a..d9784ca9d4 100644 --- a/stdlib/erand48.c +++ b/stdlib/erand48.c @@ -28,7 +28,7 @@ erand48 (xsubi) { double result; - (void) erand48_r (xsubi, &__libc_drand48_data, &result); + (void) __erand48_r (xsubi, &__libc_drand48_data, &result); return result; } |