summaryrefslogtreecommitdiff
path: root/rng.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2017-09-20 18:10:07 -0400
committerJeffrey Walton <noloader@gmail.com>2017-09-20 18:10:07 -0400
commit35c0fa82fd4c9718209bddfedbb36f651f275992 (patch)
tree48e86f5bfca38ad69ec1ca685655344c342bcf01 /rng.cpp
parentc5a427d69086f9e2388cf6697c4b20046574306a (diff)
downloadcryptopp-git-35c0fa82fd4c9718209bddfedbb36f651f275992.tar.gz
Use <time.h> for Borland/Embarcadero (GH #512)
Diffstat (limited to 'rng.cpp')
-rw-r--r--rng.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/rng.cpp b/rng.cpp
index c1763974..43d48e28 100644
--- a/rng.cpp
+++ b/rng.cpp
@@ -5,8 +5,8 @@
#include "rng.h"
#include "fips140.h"
-#include <ctime>
-#include <cmath>
+#include <time.h>
+#include <math.h>
NAMESPACE_BEGIN(CryptoPP)