beta-0.89.2
[luatex.git] / source / libs / gmp / gmp-src / mpn / generic / sec_mul.c
blob2cd87fab1deb19481c8150d59b1f71ce6522accd
1 /* mpn_sec_mul.
3 Contributed to the GNU project by Torbjörn Granlund.
5 Copyright 2013 Free Software Foundation, Inc.
7 This file is part of the GNU MP Library.
9 The GNU MP Library is free software; you can redistribute it and/or modify
10 it under the terms of either:
12 * the GNU Lesser General Public License as published by the Free
13 Software Foundation; either version 3 of the License, or (at your
14 option) any later version.
18 * the GNU General Public License as published by the Free Software
19 Foundation; either version 2 of the License, or (at your option) any
20 later version.
22 or both in parallel, as here.
24 The GNU MP Library is distributed in the hope that it will be useful, but
25 WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
26 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
27 for more details.
29 You should have received copies of the GNU General Public License and the
30 GNU Lesser General Public License along with the GNU MP Library. If not,
31 see https://www.gnu.org/licenses/. */
33 #include "gmp.h"
34 #include "gmp-impl.h"
36 void
37 mpn_sec_mul (mp_ptr rp,
38 mp_srcptr ap, mp_size_t an,
39 mp_srcptr bp, mp_size_t bn,
40 mp_ptr tp)
42 mpn_mul_basecase (rp, ap, an, bp, bn);
45 mp_size_t
46 mpn_sec_mul_itch (mp_size_t an, mp_size_t bn)
48 return 0;