aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Support/Process.cpp
diff options
context:
space:
mode:
authorAlexandre Ganea <alexandre.ganea@ubisoft.com>2020-11-12 08:31:57 -0500
committerAlexandre Ganea <alexandre.ganea@ubisoft.com>2020-11-12 08:32:16 -0500
commitec63dfe368f729b218630b95d29ff65713acd3d4 (patch)
treee00a595b7dcba6b23abe8c186af471d37fe36f08 /llvm/lib/Support/Process.cpp
parenta196e8092a9ec1c74a4d8b717d9b611430dfa498 (diff)
downloadllvm-ec63dfe368f729b218630b95d29ff65713acd3d4.zip
llvm-ec63dfe368f729b218630b95d29ff65713acd3d4.tar.gz
llvm-ec63dfe368f729b218630b95d29ff65713acd3d4.tar.bz2
[LLD] Fix include following 45b8a741fbbf271e0fb71294cb7cdce3ad4b9bf3
Diffstat (limited to 'llvm/lib/Support/Process.cpp')
-rw-r--r--llvm/lib/Support/Process.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Support/Process.cpp b/llvm/lib/Support/Process.cpp
index 8626117..e081444 100644
--- a/llvm/lib/Support/Process.cpp
+++ b/llvm/lib/Support/Process.cpp
@@ -20,7 +20,7 @@
#include "llvm/Support/Path.h"
#include "llvm/Support/Program.h"
-#include <stddef.h> // for _Exit
+#include <stdlib.h> // for _Exit
using namespace llvm;
using namespace sys;