summaryrefslogtreecommitdiffstats
path: root/sdch
diff options
context:
space:
mode:
Diffstat (limited to 'sdch')
-rw-r--r--sdch/open-vcdiff/src/gflags/gflags.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/sdch/open-vcdiff/src/gflags/gflags.h b/sdch/open-vcdiff/src/gflags/gflags.h
index 5517ec4..ce4c1b8 100644
--- a/sdch/open-vcdiff/src/gflags/gflags.h
+++ b/sdch/open-vcdiff/src/gflags/gflags.h
@@ -105,7 +105,11 @@ typedef unsigned __int32 uint32;
typedef __int64 int64;
typedef unsigned __int64 uint64;
#else
-#error Do not know how to define a 32-bit integer quantity on your system
+typedef int32_t int32;
+typedef uint32_t uint32;
+typedef int64_t int64;
+typedef uint64_t uint64;
+//#error Do not know how to define a 32-bit integer quantity on your system
#endif
// --------------------------------------------------------------------