summaryrefslogtreecommitdiff
path: root/mpz
diff options
context:
space:
mode:
authorKevin Ryde <user42@zip.com.au>2001-11-29 22:36:01 +0100
committerKevin Ryde <user42@zip.com.au>2001-11-29 22:36:01 +0100
commit86dcb171514524c439d26d8ab6aa8bab6a58a5aa (patch)
tree379723667b956ded7305ca5059b9d54abfff3b30 /mpz
parent2efca43c713774778253fd1557d73bc5311d1cbc (diff)
downloadgmp-86dcb171514524c439d26d8ab6aa8bab6a58a5aa.tar.gz
* mpz/fits_s.c, mpf/fits_s.c, mpf/fits_u.c: Remove files, unused since
change to .h style.
Diffstat (limited to 'mpz')
-rw-r--r--mpz/fits_s.c58
1 files changed, 0 insertions, 58 deletions
diff --git a/mpz/fits_s.c b/mpz/fits_s.c
deleted file mode 100644
index 220978357..000000000
--- a/mpz/fits_s.c
+++ /dev/null
@@ -1,58 +0,0 @@
-/* int mpz_fits_X_p (mpz_t z) -- test whether z fits signed type X.
-
-Copyright 1997, 2000, 2001 Free Software Foundation, Inc.
-
-This file is part of the GNU MP Library.
-
-The GNU MP Library is free software; you can redistribute it and/or modify
-it under the terms of the GNU Lesser General Public License as published by
-the Free Software Foundation; either version 2.1 of the License, or (at your
-option) any later version.
-
-The GNU MP Library is distributed in the hope that it will be useful, but
-WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
-or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
-License for more details.
-
-You should have received a copy of the GNU Lesser General Public License
-along with the GNU MP Library; see the file COPYING.LIB. If not, write to
-the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
-MA 02111-1307, USA. */
-
-#include "gmp.h"
-#include "gmp-impl.h"
-
-
-#ifdef OPERATION_fits_sshort
-#define FUNCTION mpz_fits_sshort_p
-#define MAXIMUM SHRT_MAX
-#define MINIMUM SHRT_MIN
-#endif
-
-#ifdef OPERATION_fits_sint
-#define FUNCTION mpz_fits_sint_p
-#define MAXIMUM INT_MAX
-#define MINIMUM INT_MIN
-#endif
-
-#ifdef OPERATION_fits_slong
-#define FUNCTION mpz_fits_slong_p
-#define MAXIMUM LONG_MAX
-#define MINIMUM LONG_MIN
-#endif
-
-#ifndef FUNCTION
-Error, unrecognised OPERATION symbol.
-#endif
-
-
-int
-FUNCTION (mpz_srcptr z)
-{
- mp_size_t size = SIZ(z);
- mp_limb_t data = PTR(z)[0];
-
- return (size == 0
- || (size == 1 && data <= MAXIMUM)
- || (size == -1 && data <= - (mp_limb_t) MINIMUM));
-}