cleanup: Big pile of whitespace fixes, all at once.
[u/mdw/catacomb] / mp-mem.c
index 5d345a0..dc9804d 100644 (file)
--- a/mp-mem.c
+++ b/mp-mem.c
@@ -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,
@@ -98,7 +98,7 @@ mp *mp_create(size_t sz)
 
 mp *mp_createsecure(size_t sz)
 {
-  mp *m = CREATE(mp);  
+  mp *m = CREATE(mp);
   m->v = mpalloc(MPARENA_SECURE, sz);
   m->vl = m->v + sz;
   m->sz = sz;
@@ -197,7 +197,7 @@ mp *mp_split(mp *m) { MP_SPLIT(m); return (m); }
  * Returns:    ---
  *
  * Use:                Changes an integer's size.  The length and value are not
- *             changed.  It is an error to 
+ *             changed.  It is an error to
  */
 
 void mp_resize(mp *m, size_t sz) { MP_RESIZE(m, sz); }
@@ -273,7 +273,7 @@ mp *mp_dest(mp *m, size_t sz, unsigned f)
        * buffer, or (b) the old buffer is secure and I'm not allowed to
        * discard the old contents.
        */
-      
+
       mparena *a;
       mpw *v;