From e56624948b2697972793871d5e9dbb3dd35f86ce Mon Sep 17 00:00:00 2001 From: Pol Henarejos Date: Sun, 12 Oct 2025 18:47:43 +0200 Subject: [PATCH] Expose gettimeofday. Signed-off-by: Pol Henarejos --- src/board.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/board.h b/src/board.h index cfbf6b4..a9ddf1a 100644 --- a/src/board.h +++ b/src/board.h @@ -20,6 +20,8 @@ #ifdef _MSC_VER #include +struct timezone; +extern int gettimeofday(struct timeval *tp, struct timezone *tzp); #else #include #endif