|
@@ -1,6 +1,6 @@
|
|
|
|
|
|
This file is part of the GNU C Library.
|
|
|
- Contributed by Ulrich Drepper <drepper@gnu.ai.mit.edu <mailto:drepper@gnu.ai.mit.edu>>, August 1995.
|
|
|
+ Contributed by Ulrich Drepper <drepper@gnu.ai.mit.edu>, August 1995.
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
@@ -29,7 +29,9 @@ struct drand48_data __libc_drand48_data attribute_hidden;
|
|
|
|
|
|
int __drand48_iterate (unsigned short int xsubi[3], struct drand48_data *buffer) attribute_hidden;
|
|
|
int
|
|
|
-__drand48_iterate (unsigned short int xsubi[3], struct drand48_data *buffer)
|
|
|
+__drand48_iterate (xsubi, buffer)
|
|
|
+ unsigned short int xsubi[3];
|
|
|
+ struct drand48_data *buffer;
|
|
|
{
|
|
|
uint64_t X;
|
|
|
uint64_t result;
|
|
@@ -56,4 +58,3 @@ __drand48_iterate (unsigned short int xsubi[3], struct drand48_data *buffer)
|
|
|
|
|
|
return 0;
|
|
|
}
|
|
|
-
|