/******************************************************************************
* All mallocs from irit modules should be piped through this allocator.       *
*									      *
*					 Written by Gershon Elber, April 1933 *
******************************************************************************/

#ifndef IMALLOC_H
#define IMALLOC_H

void IritTestAllDynMemory(int PrintAlloc);
VoidPtr IritMalloc(unsigned size);
void IritFree(VoidPtr p);

#endif /* IMALLOC_H */
