diff options
author | Ulrich Drepper <drepper@redhat.com> | 1997-04-21 14:50:33 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1997-04-21 14:50:33 +0000 |
commit | 47f13fd4ba484366bedadfc41b12b17a5c7c56d6 (patch) | |
tree | 1408bbf869a2c6887e354f82181abdd2afbc15a5 /stdlib/mrand48.c | |
parent | Update. (diff) | |
download | glibc-47f13fd4ba484366bedadfc41b12b17a5c7c56d6.tar.gz glibc-47f13fd4ba484366bedadfc41b12b17a5c7c56d6.tar.bz2 glibc-47f13fd4ba484366bedadfc41b12b17a5c7c56d6.zip |
Update.
1997-04-21 16:45 Ulrich Drepper <drepper@cygnus.com>
* stdlib/drand48.c: Cleanup namespace.
* stdlib/drand48_r.c: Cleanup namespace.
* stdlib/erand48.c: Cleanup namespace.
* stdlib/erand48_r.c: Cleanup namespace.
* stdlib/jrand48.c: Cleanup namespace.
* stdlib/jrand48_r.c: Cleanup namespace.
* stdlib/lrand48.c: Cleanup namespace.
* stdlib/lrand48_r.c: Cleanup namespace.
* stdlib/mrand48.c: Cleanup namespace.
* stdlib/mrand48_r.c: Cleanup namespace.
* stdlib/nrand48.c: Cleanup namespace.
* stdlib/nrand48_r.c: Cleanup namespace.
* stdlib/lcong48.c: Cleanup namespace.
* stdlib/lcong48_r.c: Cleanup namespace.
* stdlib/srand48.c: Cleanup namespace.
* stdlib/srand48_r.c: Cleanup namespace.
* stdlib/seed48.c: Cleanup namespace.
* stdlib/seed48_r.c: Cleanup namespace.
* stdlib/stdlib.h: Provide new prototypes.
Diffstat (limited to 'stdlib/mrand48.c')
-rw-r--r-- | stdlib/mrand48.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/stdlib/mrand48.c b/stdlib/mrand48.c index 9a68cbf45c..9b0507c1af 100644 --- a/stdlib/mrand48.c +++ b/stdlib/mrand48.c @@ -22,12 +22,12 @@ /* Global state for non-reentrant functions. Defined in drand48-iter.c. */ extern struct drand48_data __libc_drand48_data; -long +long int mrand48 () { - long result; + long int result; - (void) jrand48_r (__libc_drand48_data.X, &__libc_drand48_data, &result); + (void) __jrand48_r (__libc_drand48_data.X, &__libc_drand48_data, &result); return result; } |