summaryrefslogtreecommitdiff
path: root/mpz/inp_str.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/inp_str.c
parent3cda1e9cd20d980654d20732a3e0c59362e921a2 (diff)
downloadgmp-60a9f27e51047aa71f2cd7c63ab2fe9a298ca70b.tar.gz
Remove K&R function headers.
Diffstat (limited to 'mpz/inp_str.c')
-rw-r--r--mpz/inp_str.c16
1 files changed, 2 insertions, 14 deletions
diff --git a/mpz/inp_str.c b/mpz/inp_str.c
index c7eb234e3..fe3bce076 100644
--- a/mpz/inp_str.c
+++ b/mpz/inp_str.c
@@ -1,7 +1,8 @@
/* mpz_inp_str(dest_integer, stream, base) -- Input a number in base
BASE from stdio stream STREAM and store the result in DEST_INTEGER.
-Copyright 1991, 1993, 1994, 1996, 1998, 2000 Free Software Foundation, Inc.
+Copyright 1991, 1993, 1994, 1996, 1998, 2000, 2001 Free Software Foundation,
+Inc.
This file is part of the GNU MP Library.
@@ -26,13 +27,7 @@ MA 02111-1307, USA. */
#include "gmp-impl.h"
static int
-#if __STDC__
digit_value_in_base (int c, int base)
-#else
-digit_value_in_base (c, base)
- int c;
- int base;
-#endif
{
int digit;
@@ -51,14 +46,7 @@ digit_value_in_base (c, base)
}
size_t
-#if __STDC__
mpz_inp_str (mpz_ptr x, FILE *stream, int base)
-#else
-mpz_inp_str (x, stream, base)
- mpz_ptr x;
- FILE *stream;
- int base;
-#endif
{
char *str;
size_t alloc_size, str_size;