diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-05-20 08:47:51 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-05-20 08:47:51 +0000 |
commit | 11975abb2c891e563dbed51a52c050ea0b05b8a4 (patch) | |
tree | d99ca21591a2528ac4546b64c8f703b0fc6dac34 /libc/stdlib/drand48.c | |
parent | 6a9087f96b69f1b8cea5cee76a27784d2b131cd2 (diff) |
- remove old-style definitions. No object-code changes.
Diffstat (limited to 'libc/stdlib/drand48.c')
-rw-r--r-- | libc/stdlib/drand48.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libc/stdlib/drand48.c b/libc/stdlib/drand48.c index ab6239d75..f96947cb2 100644 --- a/libc/stdlib/drand48.c +++ b/libc/stdlib/drand48.c @@ -24,8 +24,7 @@ libc_hidden_proto(erand48_r) /* Global state for non-reentrant functions. Defined in drand48-iter.c. */ extern struct drand48_data __libc_drand48_data attribute_hidden; -double -drand48 () +double drand48 (void) { double result; |