summaryrefslogtreecommitdiff
path: root/gmp/mpz/limbs_write.c
diff options
context:
space:
mode:
authorPedro Alvarez <pedro.alvarez@codethink.co.uk>2016-05-27 17:39:31 +0100
committerPedro Alvarez <pedro.alvarez@codethink.co.uk>2016-05-27 17:53:32 +0100
commit26c75cf8267919f81a1759c9c965a52c660233f9 (patch)
treecf2a39cf56c2c8ac45760854413ab233e6263974 /gmp/mpz/limbs_write.c
parent56892c1d217baea02092b51a09bbc924130ca84c (diff)
downloadgcc-tarball-baserock/pedroalvarez/gcc-5.3.0-gmp432.tar.gz
Diffstat (limited to 'gmp/mpz/limbs_write.c')
-rw-r--r--gmp/mpz/limbs_write.c39
1 files changed, 0 insertions, 39 deletions
diff --git a/gmp/mpz/limbs_write.c b/gmp/mpz/limbs_write.c
deleted file mode 100644
index 605cb5e3a3..0000000000
--- a/gmp/mpz/limbs_write.c
+++ /dev/null
@@ -1,39 +0,0 @@
-/* mpz_limbs_write -- Write access to the mpn-style limb array.
-
-Copyright 2013 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 either:
-
- * the GNU Lesser General Public License as published by the Free
- Software Foundation; either version 3 of the License, or (at your
- option) any later version.
-
-or
-
- * the GNU General Public License as published by the Free Software
- Foundation; either version 2 of the License, or (at your option) any
- later version.
-
-or both in parallel, as here.
-
-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 copies of the GNU General Public License and the
-GNU Lesser General Public License along with the GNU MP Library. If not,
-see https://www.gnu.org/licenses/. */
-
-#include "gmp.h"
-#include "gmp-impl.h"
-
-mp_ptr
-mpz_limbs_write (mpz_ptr x, mp_size_t n)
-{
- ASSERT (n > 0);
- return MPZ_NEWALLOC (x, n);
-}