]> gcc.gnu.org Git - gcc.git/commitdiff
c++tools: Include <cstdlib> for exit [PR100731]
authorJakub Jelinek <jakub@redhat.com>
Tue, 25 May 2021 14:44:35 +0000 (16:44 +0200)
committerJakub Jelinek <jakub@redhat.com>
Tue, 25 May 2021 14:44:35 +0000 (16:44 +0200)
This TU uses exit, but doesn't include <stdlib.h> or <cstdlib> and relies
on some other header to include it indirectly, which apparently doesn't
happen on reporter's host.

The other <c*> headers aren't guarded either and we rely on a compiler
capable of C++11, so maybe we can rely on <cstdlib> being around
unconditionally.

2021-05-25  Jakub Jelinek  <jakub@redhat.com>

PR bootstrap/100731
* server.cc: Include <cstdlib>.

c++tools/server.cc

index 709955e7e2b1f4d3452f2187f80eb5152d7ff5bc..fae3e78dc5d0ce49e30126b8b4f09630c2ab02d2 100644 (file)
@@ -29,6 +29,7 @@ along with GCC; see the file COPYING3.  If not see
 #include <csignal>
 #include <cstring>
 #include <cstdarg>
+#include <cstdlib>
 // OS
 #include <unistd.h>
 #include <sys/types.h>
This page took 0.06607 seconds and 5 git commands to generate.