From 8ea31ff3b51659de48925680260770b0a0a296c8 Mon Sep 17 00:00:00 2001
From: Paul Bakker
Date: Wed, 27 Feb 2013 15:02:50 +0100
Subject: [PATCH] Added missing typedef for INT64
---
include/polarssl/bignum.h | 1 +
1 file changed, 1 insertion(+)
diff --git a/include/polarssl/bignum.h b/include/polarssl/bignum.h
index fac39be0b..e02db3f76 100644
--- a/include/polarssl/bignum.h
+++ b/include/polarssl/bignum.h
@@ -42,6 +42,7 @@ typedef INT16 int16_t;
typedef UINT16 uint16_t;
#endif
typedef INT32 int32_t;
+typedef INT64 int64_t;
typedef UINT32 uint32_t;
typedef UINT64 uint64_t;
#else