/******************************************************************************

	ZAlloc()

	This function allocates memory.  The single argument is the number of
bytes to allocate.  TECO-C uses the ZFree and ZRaloc functions to de-allocate
and re-allocate, respectively,  the memory allocated by this function.

*****************************************************************************/

#include "ZPort.h"		/* define portability identifiers */


#ifdef UNKNOWN
char *ZAlloc(MemSize)		/* allocate memory */
LONG MemSize;
{
	puts("Terminating in function ZAlloc.\n");
	exit(1);
}
#else
char *malloc();			/* standard C library function */
char *ZAlloc(MemSize)		/* allocate memory */
LONG MemSize;
{
	return(malloc(MemSize));
}
#endif
