[GWP-ASan] Fixed issue with c++ standard library dependency.
am: e3e2637d91

Change-Id: I1aac2428d2fd09bb5768ecadd03de6c69f189637
diff --git a/gwp_asan/random.cpp b/gwp_asan/random.cpp
index 625973c..67f4a22 100644
--- a/gwp_asan/random.cpp
+++ b/gwp_asan/random.cpp
@@ -8,7 +8,7 @@
 
 #include "gwp_asan/random.h"
 
-#include <ctime>
+#include <time.h>
 
 namespace gwp_asan {
 uint32_t getRandomUnsigned32() {
diff --git a/gwp_asan/random.h b/gwp_asan/random.h
index a71f3e5..5fcf30d 100644
--- a/gwp_asan/random.h
+++ b/gwp_asan/random.h
@@ -9,7 +9,7 @@
 #ifndef GWP_ASAN_RANDOM_H_
 #define GWP_ASAN_RANDOM_H_
 
-#include <cstdint>
+#include <stdint.h>
 
 namespace gwp_asan {
 // xorshift (32-bit output), extremely fast PRNG that uses arithmetic operations