From: Andrei Pavel Date: Wed, 17 Sep 2025 06:37:40 +0000 (+0300) Subject: [#4107] Add missing fcntl.h include for open() X-Git-Tag: Kea-3.1.2~22 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5d784df18c7aee893fe8a90928802ba7edeeaeb3;p=thirdparty%2Fkea.git [#4107] Add missing fcntl.h include for open() --- diff --git a/src/lib/util/pid_file.cc b/src/lib/util/pid_file.cc index 02d97b7342..7483b35359 100644 --- a/src/lib/util/pid_file.cc +++ b/src/lib/util/pid_file.cc @@ -1,4 +1,4 @@ -// Copyright (C) 2015 Internet Systems Consortium, Inc. ("ISC") +// Copyright (C) 2015-2025 Internet Systems Consortium, Inc. ("ISC") // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this @@ -7,11 +7,13 @@ #include #include -#include -#include -#include + #include + +#include +#include #include +#include namespace isc { namespace util {