https://www.tutorialspoint.com/c_standard_library/c_function_clock.htm
Need it for a Lua implementation of os.clock()
os.clock ()
Returns an approximation of the amount in seconds of CPU time used by the program.
C library - clock() function - The C library clock() function returns the number of clock ticks elapsed since the program was launched. To get the number of seconds used by the CPU, we will need to divide by CLOCKS_PER_SEC. On a 32-bit system where CLOCKS_PER_SEC equals 1000000, this function will return the same value approximat