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

	ZRaloc()

	This function performs the standard C library function realloc.

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

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

char	*realloc();		/* standard C library function */




#ifdef UNKNOWN
char *ZRaloc(pointer, MemSiz)	/* re-allocate memory */
char *pointer;
LONG MemSiz;
{
	puts("Terminating in function ZRaloc.\n");
	exit(1);
}
#endif



#ifdef vax11c
char *ZRaloc(pointer, MemSiz)	/* re-allocate memory */
char *pointer;
LONG MemSiz;
{
	return(realloc(pointer, MemSiz));
}
#endif



#ifdef XENIX

char	*realloc();		/* standard C library function */

char *ZRaloc(pointer, MemSiz)	/* re-allocate memory */
char *pointer;
LONG MemSiz;
{
	return(realloc(pointer, (unsigned)MemSiz));
}
#endif
