diff options
Diffstat (limited to 'stdlib/drand48_r.c')
-rw-r--r-- | stdlib/drand48_r.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/stdlib/drand48_r.c b/stdlib/drand48_r.c index 014af96739..7e1772d08a 100644 --- a/stdlib/drand48_r.c +++ b/stdlib/drand48_r.c @@ -21,9 +21,7 @@ #include <stdlib.h> int -drand48_r (buffer, result) - struct drand48_data *buffer; - double *result; +drand48_r (struct drand48_data *buffer, double *result) { return __erand48_r (buffer->__x, buffer, result); } |