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