summaryrefslogtreecommitdiff
path: root/stdlib/nrand48_r.c
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/nrand48_r.c')
-rw-r--r--stdlib/nrand48_r.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/stdlib/nrand48_r.c b/stdlib/nrand48_r.c
index 3b1797f24e..7bf8957eae 100644
--- a/stdlib/nrand48_r.c
+++ b/stdlib/nrand48_r.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1995-2015 Free Software Foundation, Inc.
+/* Copyright (C) 1995-2016 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@gnu.ai.mit.edu>, August 1995.
@@ -19,10 +19,8 @@
#include <stdlib.h>
int
-__nrand48_r (xsubi, buffer, result)
- unsigned short int xsubi[3];
- struct drand48_data *buffer;
- long int *result;
+__nrand48_r (unsigned short int xsubi[3], struct drand48_data *buffer,
+ long int *result)
{
/* Compute next state. */
if (__drand48_iterate (xsubi, buffer) < 0)