From c56e251d3f444b78e877eae27a0f82dcde5e9fe5 Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Sun, 6 Jul 2025 15:22:43 +0900 Subject: [PATCH] analyze: include unistd.h The source file uses symbols e.g. execl(), execvp(), _exit(), and so on, without including unistd.h. Continuation of 4f18ff2e29b8054f30b084abcabf5f689f4b340b. Follow-up for 9a08000d186396bc8bcb8fe057720417543c3bf0. --- src/analyze/analyze-unit-shell.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/analyze/analyze-unit-shell.c b/src/analyze/analyze-unit-shell.c index 576a420034..6d241eb6e1 100644 --- a/src/analyze/analyze-unit-shell.c +++ b/src/analyze/analyze-unit-shell.c @@ -2,6 +2,7 @@ #include #include +#include #include "sd-bus.h"