summaryrefslogtreecommitdiff
path: root/randsdui.c
diff options
context:
space:
mode:
authorKevin Ryde <user42@zip.com.au>2000-09-24 23:27:25 +0200
committerKevin Ryde <user42@zip.com.au>2000-09-24 23:27:25 +0200
commit1bb16140821efd0b0c42e3208d5be8e260861545 (patch)
tree00eb49aed9cd2140b8b09c02f5d91c8e75351a07 /randsdui.c
parent9c77eae92e7cdec7f4be9e828f32ceb8b5012e6a (diff)
downloadgmp-1bb16140821efd0b0c42e3208d5be8e260861545.tar.gz
* randsdui.c: Switch to ansi parameters, remove wrong K&R part.
Diffstat (limited to 'randsdui.c')
-rw-r--r--randsdui.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/randsdui.c b/randsdui.c
index 92f412f3e..1901eaf96 100644
--- a/randsdui.c
+++ b/randsdui.c
@@ -24,14 +24,8 @@ MA 02111-1307, USA. */
#include "gmp-impl.h"
void
-#if __STDC__
gmp_randseed_ui (gmp_randstate_t rstate,
unsigned long int seed)
-#else
-gmp_randseed_ui (rstate, seed)
- gmp_randstate_t rstate;
- mpz_t seed;
-#endif
{
mpz_set_ui (rstate->seed, seed);
}