From 75893f03312c1b1c07e494dc415f6938f5a52d3a Mon Sep 17 00:00:00 2001 From: lion Date: Mon, 22 Sep 2025 23:47:38 +0800 Subject: [PATCH] include time.h for windows struture tm --- binding/c/xdb_util.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/binding/c/xdb_util.c b/binding/c/xdb_util.c index 0f04a4e..c2e8ef9 100644 --- a/binding/c/xdb_util.c +++ b/binding/c/xdb_util.c @@ -12,6 +12,8 @@ // for Linux #ifdef XDB_LINUX #include "sys/time.h" +#elif XDB_WINDOWS +#include #endif // @Note: since 2023/10/13 to compatible with the windows system