summaryrefslogtreecommitdiff
path: root/mpz/mul_si.c
diff options
context:
space:
mode:
authorKevin Ryde <user42@zip.com.au>2001-10-01 23:48:23 +0200
committerKevin Ryde <user42@zip.com.au>2001-10-01 23:48:23 +0200
commit987106a468a9cab12648740e7079316b69da699c (patch)
tree778a1bba2f7dbd8efd18e54ec333b76de9910903 /mpz/mul_si.c
parentb8de6871af754d853a522a88b3a3aff3723f963e (diff)
downloadgmp-987106a468a9cab12648740e7079316b69da699c.tar.gz
* mpz/mul_ui.c, mpz/mul_ui.c: New files, using mpz/mul_i.i.
Diffstat (limited to 'mpz/mul_si.c')
-rw-r--r--mpz/mul_si.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/mpz/mul_si.c b/mpz/mul_si.c
new file mode 100644
index 000000000..18f56945a
--- /dev/null
+++ b/mpz/mul_si.c
@@ -0,0 +1,25 @@
+/* mpz_mul_si (product, multiplier, small_multiplicand) -- Set PRODUCT to
+ MULTIPLICATOR times SMALL_MULTIPLICAND.
+
+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. */
+
+
+#define OPERATION_mul_si
+#include "mul_i.i"