Remove useless header `mpscan.h'.
authormdw <mdw>
Sat, 29 Jul 2000 17:04:02 +0000 (17:04 +0000)
committermdw <mdw>
Sat, 29 Jul 2000 17:04:02 +0000 (17:04 +0000)
mpx-kmul.c
mpx-ksqr.c

index dd492ad..2a7f60c 100644 (file)
@@ -1,6 +1,6 @@
 /* -*-c-*-
  *
- * $Id: mpx-kmul.c,v 1.4 2000/06/17 11:42:11 mdw Exp $
+ * $Id: mpx-kmul.c,v 1.5 2000/07/29 17:04:02 mdw Exp $
  *
  * Karatsuba's multiplication algorithm
  *
@@ -30,6 +30,9 @@
 /*----- Revision history --------------------------------------------------* 
  *
  * $Log: mpx-kmul.c,v $
+ * Revision 1.5  2000/07/29 17:04:02  mdw
+ * Remove useless header `mpscan.h'.
+ *
  * Revision 1.4  2000/06/17 11:42:11  mdw
  * Moved the Karatsuba macros into a separate file for better sharing.
  * Fixed some comments.
@@ -195,8 +198,6 @@ void mpx_kmul(mpw *dv, mpw *dvl,
 #include <mLib/alloc.h>
 #include <mLib/testrig.h>
 
-#include "mpscan.h"
-
 #define ALLOC(v, vl, sz) do {                                           \
   size_t _sz = (sz);                                                    \
   mpw *_vv = xmalloc(MPWS(_sz));                                        \
index 226b99a..e6c40f6 100644 (file)
@@ -1,6 +1,6 @@
 /* -*-c-*-
  *
- * $Id: mpx-ksqr.c,v 1.3 2000/06/17 11:42:54 mdw Exp $
+ * $Id: mpx-ksqr.c,v 1.4 2000/07/29 17:04:02 mdw Exp $
  *
  * Karatsuba-based squaring algorithm
  *
@@ -30,6 +30,9 @@
 /*----- Revision history --------------------------------------------------* 
  *
  * $Log: mpx-ksqr.c,v $
+ * Revision 1.4  2000/07/29 17:04:02  mdw
+ * Remove useless header `mpscan.h'.
+ *
  * Revision 1.3  2000/06/17 11:42:54  mdw
  * Moved the Karatsuba macros into a separate file for better sharing.
  * Fixed some comments.  Use an improved technique so that all the
@@ -160,8 +163,6 @@ void mpx_ksqr(mpw *dv, mpw *dvl,
 #include <mLib/alloc.h>
 #include <mLib/testrig.h>
 
-#include "mpscan.h"
-
 #define ALLOC(v, vl, sz) do {                                           \
   size_t _sz = (sz);                                                    \
   mpw *_vv = xmalloc(MPWS(_sz));                                        \