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/nrand48.c')
-rw-r--r--newlib/libc/stdlib/nrand48.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/newlib/libc/stdlib/nrand48.c b/newlib/libc/stdlib/nrand48.c
index 43a6d0cfb..cca0e5f7a 100644
--- a/newlib/libc/stdlib/nrand48.c
+++ b/newlib/libc/stdlib/nrand48.c
@@ -14,8 +14,7 @@
#include "rand48.h"
long
-_DEFUN (_nrand48_r, (r, xseed),
- struct _reent *r,
+_nrand48_r (struct _reent *r,
unsigned short xseed[3])
{
__dorand48 (r, xseed);
@@ -25,8 +24,7 @@ _DEFUN (_nrand48_r, (r, xseed),
#ifndef _REENT_ONLY
long
-_DEFUN (nrand48, (xseed),
- unsigned short xseed[3])
+nrand48 (unsigned short xseed[3])
{
return _nrand48_r (_REENT, xseed);
}