diff options
Diffstat (limited to 'stdlib/nrand48_r.c')
-rw-r--r-- | stdlib/nrand48_r.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/stdlib/nrand48_r.c b/stdlib/nrand48_r.c index 3b1797f24e..ee4476bc94 100644 --- a/stdlib/nrand48_r.c +++ b/stdlib/nrand48_r.c @@ -19,10 +19,8 @@ #include <stdlib.h> int -__nrand48_r (xsubi, buffer, result) - unsigned short int xsubi[3]; - struct drand48_data *buffer; - long int *result; +__nrand48_r (unsigned short int xsubi[3], struct drand48_data *buffer, + long int *result) { /* Compute next state. */ if (__drand48_iterate (xsubi, buffer) < 0) |