From 7a5e9a58fbe27d8b8f04cd18bc6e1dd736e3cd12 Mon Sep 17 00:00:00 2001 From: Jakub Jelinek Date: Tue, 25 May 2021 16:44:35 +0200 Subject: c++tools: Include for exit [PR100731] This TU uses exit, but doesn't include or and relies on some other header to include it indirectly, which apparently doesn't happen on reporter's host. The other headers aren't guarded either and we rely on a compiler capable of C++11, so maybe we can rely on being around unconditionally. 2021-05-25 Jakub Jelinek PR bootstrap/100731 * server.cc: Include . --- c++tools/server.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/c++tools/server.cc b/c++tools/server.cc index 709955e..fae3e78 100644 --- a/c++tools/server.cc +++ b/c++tools/server.cc @@ -29,6 +29,7 @@ along with GCC; see the file COPYING3. If not see #include #include #include +#include // OS #include #include -- cgit v1.1