diff options
author | Kevin Ryde <user42@zip.com.au> | 2000-09-24 23:27:25 +0200 |
---|---|---|
committer | Kevin Ryde <user42@zip.com.au> | 2000-09-24 23:27:25 +0200 |
commit | 1bb16140821efd0b0c42e3208d5be8e260861545 (patch) | |
tree | 00eb49aed9cd2140b8b09c02f5d91c8e75351a07 /randsdui.c | |
parent | 9c77eae92e7cdec7f4be9e828f32ceb8b5012e6a (diff) | |
download | gmp-1bb16140821efd0b0c42e3208d5be8e260861545.tar.gz |
* randsdui.c: Switch to ansi parameters, remove wrong K&R part.
Diffstat (limited to 'randsdui.c')
-rw-r--r-- | randsdui.c | 6 |
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); } |