Remove form-feeds from dlmalloc.c

These don't really serve any purpose in the modern age. On the other hand
they show up as annoying control characters in my editor, which then happily
removes them.

I believe we can drop these characters from the file.

Signed-off-by: Simon Glass <sjg@chromium.org>
diff --git a/common/dlmalloc.c b/common/dlmalloc.c
index 3c70d5d..d1cd561 100644
--- a/common/dlmalloc.c
+++ b/common/dlmalloc.c
@@ -220,7 +220,7 @@
 
 */
 
-
+
 
 /* Preliminaries */
 
@@ -1132,7 +1132,7 @@
 
 #endif
 
-
+
 
 /*
   Type declarations
@@ -1272,7 +1272,7 @@
        serviced via calls to mmap, and then later released via munmap.
 
 */
-
+
 /*  sizes, alignments */
 
 #define SIZE_SZ                (sizeof(INTERNAL_SIZE_T))
@@ -1297,7 +1297,7 @@
 #define aligned_OK(m)    (((unsigned long)((m)) & (MALLOC_ALIGN_MASK)) == 0)
 
 
-
+
 
 /*
   Physical chunk operations
@@ -1332,7 +1332,7 @@
 #define chunk_at_offset(p, s)  ((mchunkptr)(((char*)(p)) + (s)))
 
 
-
+
 
 /*
   Dealing with use bits
@@ -1371,7 +1371,7 @@
  (((mchunkptr)(((char*)(p)) + (s)))->size &= ~(PREV_INUSE))
 
 
+
-
 
 /*
   Dealing with size fields
@@ -1394,9 +1394,9 @@
 #define set_foot(p, s)   (((mchunkptr)((char*)(p) + (s)))->prev_size = (s))
 
 
-
 
 
+
 /*
    Bins
 
@@ -1566,7 +1566,7 @@
 
 #define is_small_request(nb) (nb < MAX_SMALLBIN_SIZE - SMALLBIN_WIDTH)
 
-
+
 
 /*
     To help compensate for the large number of bins, a one-level index
@@ -1590,7 +1590,7 @@
 #define clear_binblock(ii)  (binblocks_w = (mbinptr)(binblocks_r & ~(idx2binblock(ii))))
 
 
+
-
 
 
 /*  Other static bookkeeping data */
@@ -1628,7 +1628,7 @@
 static unsigned long max_mmapped_mem = 0;
 #endif
 
-
+
 
 /*
   Debugging support
@@ -1769,7 +1769,7 @@
 #define check_malloced_chunk(P,N)
 #endif
 
-
+
 
 /*
   Macro-based internal utilities
@@ -1841,9 +1841,9 @@
   (last_remainder->fd = last_remainder->bk = last_remainder)
 
 
-
 
 
+
 /* Routines dealing with mmap(). */
 
 #if HAVE_MMAP
@@ -1972,7 +1972,7 @@
 #endif /* HAVE_MMAP */
 
 
-
+
 
 /*
   Extend the top-most chunk by obtaining memory from system.
@@ -2089,7 +2089,7 @@
 }
 
 
-
+
 
 /* Main public routines */
 
@@ -2396,7 +2396,7 @@
 }
 
 
+
-
 
 /*
 
@@ -2513,9 +2513,9 @@
 }
 
 
-
 
 
+
 /*
 
   Realloc algorithm:
@@ -2750,7 +2750,7 @@
 }
 
 
-
+
 
 /*
 
@@ -2868,9 +2868,9 @@
 
 }
 
-
 
 
+
 /*
     valloc just invokes memalign with alignment argument equal
     to the page size of the system (or as near to this as can
@@ -2975,7 +2975,7 @@
 }
 #endif
 
-
+
 
 /*
 
@@ -3056,7 +3056,7 @@
   }
 }
 
-
+
 
 /*
   malloc_usable_size:
@@ -3092,7 +3092,7 @@
 }
 
 
-
+
 
 /* Utility to update current_mallinfo for malloc_stats and mallinfo() */
 
@@ -3136,7 +3136,7 @@
 }
 #endif	/* DEBUG */
 
-
+
 
 /*
 
@@ -3183,7 +3183,7 @@
 #endif	/* DEBUG */
 
 
-
+
 
 /*
   mallopt: