diff options
Diffstat (limited to 'stdlib/erand48_r.c')
-rw-r--r-- | stdlib/erand48_r.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/stdlib/erand48_r.c b/stdlib/erand48_r.c index ee554a5069..61ed85217e 100644 --- a/stdlib/erand48_r.c +++ b/stdlib/erand48_r.c @@ -22,10 +22,8 @@ int -__erand48_r (xsubi, buffer, result) - unsigned short int xsubi[3]; - struct drand48_data *buffer; - double *result; +__erand48_r (unsigned short int xsubi[3], struct drand48_data *buffer, + double *result) { union ieee754_double temp; |