#include <exec/lists.h>
#include <exec/memory.h>
#include <exec/execbase.h>
#include <clib/exec_protos.h>

/*
**     our PRIVATE! memory pool structure
** (_NOT_ compatible with original amiga.lib!)
*/

typedef struct Pool
{
  struct MinList PuddleList;
  ULONG MemoryFlags;
  ULONG PuddleSize;
  ULONG ThreshSize;
} POOL;

extern struct ExecBase *SysBase;
