From 076c1b0ea4cc39c909efa36c8315f10565a05d93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Wed, 23 Mar 2005 01:15:33 +0000 Subject: [PATCH] Minor cleanup. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@11954 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/kernel/libroot/posix/malloc/superblock.cpp | 5 +---- src/kernel/libroot/posix/malloc/superblock.h | 8 -------- 2 files changed, 1 insertion(+), 12 deletions(-) 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"