#include <stdio.h>      /* standard I/O                */
#include <string.h>     /* for strcpy - 3 occurrences  */
#include <stdlib.h>     /* for exit   - 1 occurrence   */

double lscomp,comp1;

int Compile1()
{
	printf("\nRunning Compile performance tests:");	
	gettimeofday(&starttime, NULL);
	system("compiledir/compile.sh");
        gettimeofday(&endtime, NULL);
        te0=((double)(endtime.tv_sec*1000000-starttime.tv_sec*1000000+endtime.tv_usec-starttime.tv_usec))/1000000;
        comp1 = te0;
return comp1;
}

