diff options
Diffstat (limited to 'stdlib/jrand48.c')
-rw-r--r-- | stdlib/jrand48.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/stdlib/jrand48.c b/stdlib/jrand48.c index 3da25166d7..c9802f02f0 100644 --- a/stdlib/jrand48.c +++ b/stdlib/jrand48.c @@ -22,13 +22,13 @@ /* Global state for non-reentrant functions. Defined in drand48-iter.c. */ extern struct drand48_data __libc_drand48_data; -long +long int jrand48 (xsubi) unsigned short int xsubi[3]; { - long result; + long int result; - (void) jrand48_r (xsubi, &__libc_drand48_data, &result); + (void) __jrand48_r (xsubi, &__libc_drand48_data, &result); return result; } |