Hi.
Is possible to use the function clock() of time.h library on the simulator of DSC 5600E?
Currently, I am treating to use it, but errors as shown belown apear.
undefined identifier clok_t
function Fclock has no prototype
It is realy urgent.
Many thanks.
#include <time.h>
#include <stdio.h>
clock_t clock(void);
int main()
{
clock_t start, end;
start = clock();
//,,,,my code //
end = clock( );
elapsed = end - start;
printf("Elapsed time: %Lu \n", elapsed);
}