From: Yu Watanabe Date: Sun, 6 Jul 2025 06:22:43 +0000 (+0900) Subject: analyze: include unistd.h X-Git-Tag: v258-rc1~156 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c56e251d3f444b78e877eae27a0f82dcde5e9fe5;p=thirdparty%2Fsystemd.git 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. --- diff --git a/src/analyze/analyze-unit-shell.c b/src/analyze/analyze-unit-shell.c index 576a4200343..6d241eb6e10 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"