[Support] Add missing include.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@156240 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Daniel Dunbar 2012-05-05 16:49:11 +00:00
parent 463a719d36
commit c94e593060

View File

@ -13,6 +13,7 @@
#include "llvm/Support/Process.h"
#include "llvm/Config/config.h"
#include <cstdlib>
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
}