From 4fc48eab73fdf7effc982d091e03e4ed3ae511b3 Mon Sep 17 00:00:00 2001 From: boreddevnl Date: Sat, 18 Apr 2026 22:04:36 +0200 Subject: [PATCH] fix: include local time header to satisfy IntelliSense --- src/userland/cli/third_party/lua/boredos_lua_os.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/userland/cli/third_party/lua/boredos_lua_os.c b/src/userland/cli/third_party/lua/boredos_lua_os.c index a3b45a2..9880fee 100644 --- a/src/userland/cli/third_party/lua/boredos_lua_os.c +++ b/src/userland/cli/third_party/lua/boredos_lua_os.c @@ -6,6 +6,7 @@ #include "lua.h" #include "lauxlib.h" #include "lualib.h" +#include "sysinclude/time.h" static int os_clock(lua_State *L) { lua_pushnumber(L, (lua_Number)clock() / (lua_Number)CLOCKS_PER_SEC);