blob: 1472ac6f76be5de28af1cf9f45c702ecc4ad3b6a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/* -----------------------------------------------------------------------------
*
* (c) The GHC Team, 1998-1999
*
* Block Allocator Interface
*
* ---------------------------------------------------------------------------*/
#ifndef BLOCK_ALLOC_H
#define BLOCK_ALLOC_H
/* Debugging -------------------------------------------------------------- */
#ifdef DEBUG
extern void checkFreeListSanity(void);
nat countFreeList(void);
#endif
#endif /* BLOCK_ALLOC_H */
|