cleanup: Big pile of whitespace fixes, all at once.
[u/mdw/catacomb] / mpx.h
diff --git a/mpx.h b/mpx.h
index 15253ed..19f5cc7 100644 (file)
--- a/mpx.h
+++ b/mpx.h
@@ -7,7 +7,7 @@
  * (c) 1999 Straylight/Edgeware
  */
 
-/*----- Licensing notice --------------------------------------------------* 
+/*----- Licensing notice --------------------------------------------------*
  *
  * This file is part of Catacomb.
  *
  * it under the terms of the GNU Library General Public License as
  * published by the Free Software Foundation; either version 2 of the
  * License, or (at your option) any later version.
- * 
+ *
  * Catacomb 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 Library General Public License for more details.
- * 
+ *
  * You should have received a copy of the GNU Library General Public
  * License along with Catacomb; if not, write to the Free
  * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
@@ -87,7 +87,7 @@
   if (_v == _vl)                                                       \
     (b) = 0;                                                           \
   else {                                                               \
-    unsigned long _b = MPW_BITS * (_vl - _v - 1) + 1;                  \
+    unsigned long _b = MPW_BITS * (_vl - _v - 1) + 1;                  \
     mpw _w = _vl[-1];                                                  \
     unsigned _k = MPW_P2;                                              \
     while (_k) {                                                       \
@@ -399,11 +399,11 @@ MPX_DOBIN(MPX_BITDECL)
  * Synonyms for the commonly-used functions above.
  */
 
-#define mpx_and  mpx_bit0001
-#define mpx_or   mpx_bit0111
+#define mpx_and         mpx_bit0001
+#define mpx_or  mpx_bit0111
 #define mpx_nand mpx_bit1110
-#define mpx_nor  mpx_bit1000
-#define mpx_xor  mpx_bit0110
+#define mpx_nor         mpx_bit1000
+#define mpx_xor         mpx_bit0110
 
 /* --- @mpx_not@ --- *
  *
@@ -690,7 +690,7 @@ extern void mpx_usqr(mpw */*dv*/, mpw */*dvl*/,
  * Arguments:  @mpw *qv, *qvl@ = quotient vector base and limit
  *             @mpw *rv, *rvl@ = dividend/remainder vector base and limit
  *             @const mpw *dv, *dvl@ = divisor vector base and limit
- *             @mpw *sv, *svl@ = scratch workspace 
+ *             @mpw *sv, *svl@ = scratch workspace
  *
  * Returns:    ---
  *