#include "TimingRoutine.h"

double realtime(void)
{
	struct timeb tp;
	ftime(&tp);
	return((double)(tp.time)*1000+(double)(tp.millitm));
}

 
