diff --git a/lib/Support/Process.cpp b/lib/Support/Process.cpp index c65cb454046..2cff1cebe51 100644 --- a/lib/Support/Process.cpp +++ b/lib/Support/Process.cpp @@ -13,6 +13,7 @@ #include "llvm/Support/Process.h" #include "llvm/Config/config.h" +#include namespace llvm { using namespace sys; @@ -27,7 +28,7 @@ unsigned llvm::sys::Process::GetRandomNumber() { return arc4random(); #else static int x = (::srand(::time(NULL)), 0); - return rand(); + return ::rand(); #endif }