summaryrefslogtreecommitdiff
path: root/mpz/out_raw.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/out_raw.c
parent3cda1e9cd20d980654d20732a3e0c59362e921a2 (diff)
downloadgmp-60a9f27e51047aa71f2cd7c63ab2fe9a298ca70b.tar.gz
Remove K&R function headers.
Diffstat (limited to 'mpz/out_raw.c')
-rw-r--r--mpz/out_raw.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/mpz/out_raw.c b/mpz/out_raw.c
index 80653b7d7..2525d486b 100644
--- a/mpz/out_raw.c
+++ b/mpz/out_raw.c
@@ -1,7 +1,7 @@
/* mpz_out_raw -- Output a mpz_t in binary. Use an endianess and word size
independent format.
-Copyright 1995 Free Software Foundation, Inc.
+Copyright 1995, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
@@ -26,13 +26,7 @@ MA 02111-1307, USA. */
#include "gmp-impl.h"
size_t
-#if __STDC__
mpz_out_raw (FILE *stream, mpz_srcptr x)
-#else
-mpz_out_raw (stream, x)
- FILE *stream;
- mpz_srcptr x;
-#endif
{
int i;
mp_size_t s;