Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/stdlib/drand48.c')
-rw-r--r--newlib/libc/stdlib/drand48.c29
1 files changed, 29 insertions, 0 deletions
diff --git a/newlib/libc/stdlib/drand48.c b/newlib/libc/stdlib/drand48.c
new file mode 100644
index 000000000..8f9c4a269
--- /dev/null
+++ b/newlib/libc/stdlib/drand48.c
@@ -0,0 +1,29 @@
+/*
+ * Copyright (c) 1993 Martin Birgmeier
+ * All rights reserved.
+ *
+ * You may redistribute unmodified or modified versions of this source
+ * code provided that the above copyright notice and this and the
+ * following conditions are retained.
+ *
+ * This software is provided ``as is'', and comes with no warranties
+ * of any kind. I shall in no event be liable for anything that happens
+ * to anyone/anything when using this software.
+ */
+
+#include "rand48.h"
+
+double
+_DEFUN (_drand48_r, (r),
+ struct _reent *r)
+{
+ return _erand48_r(r, __rand48_seed);
+}
+
+#ifndef _REENT_ONLY
+double
+_DEFUN_VOID (drand48)
+{
+ return _drand48_r (_REENT);
+}
+#endif /* !_REENT_ONLY */