Minor cleanup.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@11954 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2005-03-23 01:15:33 +00:00
parent f557016851
commit 076c1b0ea4
2 changed files with 1 additions and 12 deletions
@@ -22,15 +22,12 @@
The superblock class controls a number of blocks (which are
allocatable units of memory).
------------------------------------------------------------------------
@(#) $Id$
------------------------------------------------------------------------
Emery Berger | <http://www.cs.utexas.edu/users/emery>
Department of Computer Sciences | <http://www.cs.utexas.edu>
University of Texas at Austin | <http://www.utexas.edu>
========================================================================
*/
//#include <new.h>
#include <string.h>
#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.
@@ -23,8 +23,6 @@
The superblock class controls a number of blocks (which are
allocatable units of memory).
------------------------------------------------------------------------
@(#) $Id$
------------------------------------------------------------------------
Emery Berger | <http://www.cs.utexas.edu/users/emery>
Department of Computer Sciences | <http://www.cs.utexas.edu>
University of Texas at Austin | <http://www.utexas.edu>
@@ -35,12 +33,6 @@
#define _SUPERBLOCK_H_
#include "config.h"
//#include <assert.h>
//#include <new.h>
//#include <stdio.h>
//#include <stdlib.h>
#include "arch-specific.h"
#include "block.h"