diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-08-08 05:28:52 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-08-08 05:28:52 +0000 |
commit | 1b2442d41e120d3585922d981a478bff4f357337 (patch) | |
tree | 4a43fe614f540f3beaaca060515264e8af6de977 /libc/stdlib/drand48-iter.c | |
parent | 62a7b2c54013b0f7e312cb439ce865cd24884bd8 (diff) |
Cleanup some silly warnings
Diffstat (limited to 'libc/stdlib/drand48-iter.c')
-rw-r--r-- | libc/stdlib/drand48-iter.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libc/stdlib/drand48-iter.c b/libc/stdlib/drand48-iter.c index 7ccc2fbc9..a69d03326 100644 --- a/libc/stdlib/drand48-iter.c +++ b/libc/stdlib/drand48-iter.c @@ -28,9 +28,7 @@ struct drand48_data __libc_drand48_data; int -__drand48_iterate (xsubi, buffer) - unsigned short int xsubi[3]; - struct drand48_data *buffer; +__drand48_iterate (unsigned short int xsubi[3], struct drand48_data *buffer) { uint64_t X; uint64_t result; |