summaryrefslogtreecommitdiff
path: root/mpbsd
diff options
context:
space:
mode:
authorKevin Ryde <user42@zip.com.au>2001-02-28 22:39:56 +0100
committerKevin Ryde <user42@zip.com.au>2001-02-28 22:39:56 +0100
commit3aa7b0e00226ba1e084e26f4510f97dad1926bc7 (patch)
treeaa28949b5886ac08ceb7c643ea19a7b9bc777b7c /mpbsd
parentea10d986496d45af7aae44814b33f13e6b8e5b49 (diff)
downloadgmp-3aa7b0e00226ba1e084e26f4510f97dad1926bc7.tar.gz
* mpbsd/rpow.c: New file.
Diffstat (limited to 'mpbsd')
-rw-r--r--mpbsd/rpow.c35
1 files changed, 35 insertions, 0 deletions
diff --git a/mpbsd/rpow.c b/mpbsd/rpow.c
new file mode 100644
index 000000000..d52f603cc
--- /dev/null
+++ b/mpbsd/rpow.c
@@ -0,0 +1,35 @@
+/* rpow -- MINT raised to short. */
+
+/*
+Copyright 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 "mp.h"
+#include "gmp.h"
+#include "gmp-impl.h"
+
+void
+rpow (const MINT *b, short e, MINT *r)
+{
+ if (e >= 0)
+ mpz_n_pow_ui (r, PTR(b), (mp_size_t) SIZ(b), (unsigned long) e);
+ else
+ SIZ(r) = 0;
+}