From 3d26835e0cdb1845203d404be6cdfbd3f100ce77 Mon Sep 17 00:00:00 2001 From: fangpeina Date: Tue, 18 Nov 2025 22:50:15 +0800 Subject: [PATCH] system/nxinit: fix compilation errors in action.c action.c uses clock_gettime(CLOCK_MONOTONIC, ...) but did not pull in directly, which fails to build on configurations where the header is not transitively included. Add the missing #include. Signed-off-by: fangpeina --- system/nxinit/action.c | 1 + 1 file changed, 1 insertion(+) diff --git a/system/nxinit/action.c b/system/nxinit/action.c index 81716e571..b677e6760 100644 --- a/system/nxinit/action.c +++ b/system/nxinit/action.c @@ -33,6 +33,7 @@ #include #include #include +#include #include "action.h" #include "builtin.h"