summaryrefslogtreecommitdiff
path: root/mpz/set_ui.c
diff options
context:
space:
mode:
authortege <tege@gmplib.org>2001-01-02 09:12:08 +0100
committertege <tege@gmplib.org>2001-01-02 09:12:08 +0100
commit60a9f27e51047aa71f2cd7c63ab2fe9a298ca70b (patch)
tree71273e7a23cbfab82e334655eede8b0a7abc4692 /mpz/set_ui.c
parent3cda1e9cd20d980654d20732a3e0c59362e921a2 (diff)
downloadgmp-60a9f27e51047aa71f2cd7c63ab2fe9a298ca70b.tar.gz
Remove K&R function headers.
Diffstat (limited to 'mpz/set_ui.c')
-rw-r--r--mpz/set_ui.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/mpz/set_ui.c b/mpz/set_ui.c
index f7cc240aa..62664393c 100644
--- a/mpz/set_ui.c
+++ b/mpz/set_ui.c
@@ -1,6 +1,6 @@
/* mpz_set_ui(integer, val) -- Assign INTEGER with a small value VAL.
-Copyright 1991, 1993, 1994, 1995 Free Software Foundation, Inc.
+Copyright 1991, 1993, 1994, 1995, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
@@ -23,13 +23,7 @@ MA 02111-1307, USA. */
#include "gmp-impl.h"
void
-#if __STDC__
mpz_set_ui (mpz_ptr dest, unsigned long int val)
-#else
-mpz_set_ui (dest, val)
- mpz_ptr dest;
- unsigned long int val;
-#endif
{
/* We don't check if the allocation is enough, since the rest of the
package ensures it's at least 1, which is what we need here. */