summaryrefslogtreecommitdiff
path: root/gnu/lib/libgmp/mpz_mod.c
diff options
context:
space:
mode:
authorMark Murray <markm@FreeBSD.org>1996-10-20 09:11:57 +0000
committerMark Murray <markm@FreeBSD.org>1996-10-20 09:11:57 +0000
commit504fa96f306dec9184adff0501bb73118b55debc (patch)
tree6c2d8ce16e849e08e8868e4822106a343e1e3e52 /gnu/lib/libgmp/mpz_mod.c
parenta0f91beb39dd7147dcbf89b723f5d96e4fde5fae (diff)
Notes
Diffstat (limited to 'gnu/lib/libgmp/mpz_mod.c')
-rw-r--r--gnu/lib/libgmp/mpz_mod.c36
1 files changed, 0 insertions, 36 deletions
diff --git a/gnu/lib/libgmp/mpz_mod.c b/gnu/lib/libgmp/mpz_mod.c
deleted file mode 100644
index 276bee050d24..000000000000
--- a/gnu/lib/libgmp/mpz_mod.c
+++ /dev/null
@@ -1,36 +0,0 @@
-/* mpz_mod(rem, dividend, divisor) -- Set REM to DIVIDEND mod DIVISOR.
-
-Copyright (C) 1991 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 General Public License as published by
-the Free Software Foundation; either version 2, 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 General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with the GNU MP Library; see the file COPYING. If not, write to
-the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
-
-#include "gmp.h"
-#include "gmp-impl.h"
-#include "longlong.h"
-
-void
-#ifdef __STDC__
-mpz_mod (MP_INT *rem, const MP_INT *num, const MP_INT *den)
-#else
-mpz_mod (rem, num, den)
- MP_INT *rem;
- const MP_INT *num;
- const MP_INT *den;
-#endif
-
-#undef COMPUTE_QUOTIENT
-#include "mpz_dmincl.c"