summaryrefslogtreecommitdiff
path: root/colm/pool.h
diff options
context:
space:
mode:
Diffstat (limited to 'colm/pool.h')
-rw-r--r--colm/pool.h27
1 files changed, 1 insertions, 26 deletions
diff --git a/colm/pool.h b/colm/pool.h
index 6a2dccee..67446d28 100644
--- a/colm/pool.h
+++ b/colm/pool.h
@@ -22,35 +22,10 @@
#ifndef _POOL_H
#define _POOL_H
-#include <iostream>
-
-using std::cerr;
-using std::endl;
-using std::ostream;
-
/* Allocation, number of items. */
#define FRESH_BLOCK 8128
-struct PoolBlock
-{
- void *data;
- PoolBlock *next;
-};
-
-struct PoolItem
-{
- PoolItem *next;
-};
-
-struct PoolAlloc
-{
- PoolBlock *head;
- long nextel;
- PoolItem *pool;
- int sizeofT;
-};
-
-void initPoolAlloc( PoolAlloc *poolAlloc, int sizeofT );
+void initPoolAlloc( struct PoolAlloc *poolAlloc, int sizeofT );
typedef struct _Program Program;
typedef struct _Kid Kid;