diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-02-20 00:20:46 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-02-20 00:20:46 +0000 |
commit | c796a16a9266918c325fc9678bc88e596accf4fb (patch) | |
tree | 743a51cba1721b4b732ed9b047c54981938928bd /libc/stdlib/drand48_r.c | |
parent | 4818c347d02c8161f005f7821846f6afead50b5b (diff) |
sync minor touchups with glibc
Diffstat (limited to 'libc/stdlib/drand48_r.c')
-rw-r--r-- | libc/stdlib/drand48_r.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/stdlib/drand48_r.c b/libc/stdlib/drand48_r.c index 0f96e59f7..1000a3acb 100644 --- a/libc/stdlib/drand48_r.c +++ b/libc/stdlib/drand48_r.c @@ -1,6 +1,6 @@ /* Copyright (C) 1995, 1996, 1997, 1998, 2001 Free Software Foundation, Inc. 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 @@ -25,5 +25,5 @@ libc_hidden_proto(erand48_r) int drand48_r (struct drand48_data *buffer, double *result) { - return erand48_r (buffer->__x, buffer, result); + return erand48_r (buffer->__x, buffer, result); } |