summaryrefslogtreecommitdiff
path: root/tune/mod_1_1-1.c
diff options
context:
space:
mode:
authorTorbjorn Granlund <tege@gmplib.org>2011-12-06 11:46:58 +0100
committerTorbjorn Granlund <tege@gmplib.org>2011-12-06 11:46:58 +0100
commitf571a43e926cf024d27b8466d232f5fb562d761e (patch)
tree342a78397f6cc4993efdfca39c38c61f8e895d21 /tune/mod_1_1-1.c
parentc189139c866e75f12ec8915670f2f66055f92852 (diff)
downloadgmp-f571a43e926cf024d27b8466d232f5fb562d761e.tar.gz
Redefine the mpn_ functions, not __gmpn_ (for the benefit of fat builds).
Diffstat (limited to 'tune/mod_1_1-1.c')
-rw-r--r--tune/mod_1_1-1.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/tune/mod_1_1-1.c b/tune/mod_1_1-1.c
index 3e079e276..763d591bb 100644
--- a/tune/mod_1_1-1.c
+++ b/tune/mod_1_1-1.c
@@ -22,7 +22,9 @@ along with the GNU MP Library. If not, see http://www.gnu.org/licenses/. */
#undef MOD_1_1P_METHOD
#define MOD_1_1P_METHOD 1
-#define __gmpn_mod_1_1p mpn_mod_1_1p_1
-#define __gmpn_mod_1_1p_cps mpn_mod_1_1p_cps_1
+#undef mpn_mod_1_1p
+#undef mpn_mod_1_1p_cps
+#define mpn_mod_1_1p mpn_mod_1_1p_1
+#define mpn_mod_1_1p_cps mpn_mod_1_1p_cps_1
#include "mpn/generic/mod_1_1.c"