diff --git a/low/heaps.h b/low/heaps.h
index 60380239fa22c7a2b5cd4e9db2e8b2292e72a422..2ee32e98028e77039da994f4153e8cb51980380e 100644
--- a/low/heaps.h
+++ b/low/heaps.h
@@ -207,7 +207,7 @@ INT          InitHeaps                (void);
 HEAP        *NewHeap                (enum HeapType type, MEM size, void *buffer);
 void         DisposeHeap            (HEAP *theHeap);
 void        *GetMem                 (HEAP *theHeap, MEM n, enum HeapAllocMode mode);
-void            *GetMemUsingKey                 (HEAP *theHeap, MEM n, enum HeapAllocMode mode, INT key);
+void        *GetMemUsingKey         (HEAP *theHeap, MEM n, enum HeapAllocMode mode, INT key);
 void         DisposeMem             (HEAP *theHeap, void *buffer);
 
 void        *GetFreelistMemory      (HEAP *theHeap, INT size);
@@ -218,10 +218,10 @@ INT          Release                (HEAP *theHeap, INT mode, INT key);
 
 MEM          HeapSize               (const HEAP *theHeap);
 MEM          HeapUsed               (const HEAP *theHeap);
-MEM                      HeapFree                               (const HEAP *theHeap);
+MEM          HeapFree               (const HEAP *theHeap);
 MEM          HeapFreelistUsed       (const HEAP *theHeap);
-MEM                      HeapTotalFree                  (const HEAP *theHeap);
-void             HeapStat                               (const HEAP *theHeap);
+MEM          HeapTotalFree          (const HEAP *theHeap);
+void         HeapStat               (const HEAP *theHeap);
 /* @} */
 
 /** @name Functions for the virtual heap management */