Expose gettimeofday.

Signed-off-by: Pol Henarejos <pol.henarejos@cttc.es>
This commit is contained in:
Pol Henarejos 2025-10-12 18:47:43 +02:00
parent 200d59f91b
commit e56624948b
No known key found for this signature in database
GPG key ID: C0095B7870A4CCD3

View file

@ -20,6 +20,8 @@
#ifdef _MSC_VER
#include <windows.h>
struct timezone;
extern int gettimeofday(struct timeval *tp, struct timezone *tzp);
#else
#include <sys/time.h>
#endif