Closed MarkMuth closed 6 months ago
Compiling with gcc (GCC) 14.1.1 20240507 raised the following warning:
gcc (GCC) 14.1.1 20240507
error: implicit declaration of function ‘gettimeofday’ [-Wimplicit-function-declaration]
Adding #include <sys/time.h> according to man gettimeofday fixes #509.
#include <sys/time.h>
man gettimeofday
Thanks, I credit you on c83802f as unneeded time include needs to be removed too
Compiling with
gcc (GCC) 14.1.1 20240507
raised the following warning:error: implicit declaration of function ‘gettimeofday’ [-Wimplicit-function-declaration]
Adding
#include <sys/time.h>
according toman gettimeofday
fixes #509.