/*	Lawrenceville Press Random Library                         */
/*  This file modified to operate with CodeWarrior Learning    */
/*  Edition version 2, October 5, 2001                         */
/*	Semptember 1998                                            */
/*	The following code works correctly under CodeWarrior 3.3   */


#include <stdlib.h>
#include <time.h>

using namespace std;	// October 5, 2001

void randomize()
{
	 time_t t;
	 srand((unsigned) time(&t));
}
//------------------------------------
int lvprandom(int limit)
{
	 return rand()%limit;
}

//------------------------------------
//----END OF RANDOM LIBRARY-----------
