diff --git a/src/kernel/libroot/posix/malloc/superblock.cpp b/src/kernel/libroot/posix/malloc/superblock.cpp index 6f1e3f5d46..05b6bc4380 100644 --- a/src/kernel/libroot/posix/malloc/superblock.cpp +++ b/src/kernel/libroot/posix/malloc/superblock.cpp @@ -22,15 +22,12 @@ The superblock class controls a number of blocks (which are allocatable units of memory). ------------------------------------------------------------------------ - @(#) $Id$ - ------------------------------------------------------------------------ Emery Berger | Department of Computer Sciences | University of Texas at Austin | ======================================================================== */ -//#include #include #include "arch-specific.h" @@ -88,7 +85,7 @@ superblock::superblock(int numBlocks, // The number of blocks in the sb. superblock * -superblock::makeSuperblock(int sizeclass, processHeap * pHeap) +superblock::makeSuperblock(int sizeclass, processHeap *pHeap) { // We need to get more memory. diff --git a/src/kernel/libroot/posix/malloc/superblock.h b/src/kernel/libroot/posix/malloc/superblock.h index 1e1ffad0ec..668dbbe462 100644 --- a/src/kernel/libroot/posix/malloc/superblock.h +++ b/src/kernel/libroot/posix/malloc/superblock.h @@ -23,8 +23,6 @@ The superblock class controls a number of blocks (which are allocatable units of memory). ------------------------------------------------------------------------ - @(#) $Id$ - ------------------------------------------------------------------------ Emery Berger | Department of Computer Sciences | University of Texas at Austin | @@ -35,12 +33,6 @@ #define _SUPERBLOCK_H_ #include "config.h" - -//#include -//#include -//#include -//#include - #include "arch-specific.h" #include "block.h"