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/srand48.c')
-rw-r--r--newlib/libc/stdlib/srand48.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/newlib/libc/stdlib/srand48.c b/newlib/libc/stdlib/srand48.c
index 1eac2a11f..573f62018 100644
--- a/newlib/libc/stdlib/srand48.c
+++ b/newlib/libc/stdlib/srand48.c
@@ -14,8 +14,7 @@
#include "rand48.h"
void
-_DEFUN (_srand48_r, (r, seed),
- struct _reent *r,
+_srand48_r (struct _reent *r,
long seed)
{
_REENT_CHECK_RAND48(r);
@@ -30,8 +29,7 @@ _DEFUN (_srand48_r, (r, seed),
#ifndef _REENT_ONLY
void
-_DEFUN (srand48, (seed),
- long seed)
+srand48 (long seed)
{
_srand48_r (_REENT, seed);
}