From a20ce52ef2acc0a6f799f551d6713a9d4cc8a663 Mon Sep 17 00:00:00 2001 From: DarthArgus Date: Wed, 21 Dec 2016 11:20:42 +0000 Subject: [PATCH] may as well revert this too --- .../sharedFoundationTypes/src/linux/FoundationTypesLinux.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/engine/shared/library/sharedFoundationTypes/src/linux/FoundationTypesLinux.h b/engine/shared/library/sharedFoundationTypes/src/linux/FoundationTypesLinux.h index bd4bdc9d..386c4ffb 100755 --- a/engine/shared/library/sharedFoundationTypes/src/linux/FoundationTypesLinux.h +++ b/engine/shared/library/sharedFoundationTypes/src/linux/FoundationTypesLinux.h @@ -10,7 +10,6 @@ #define PLATFORM_LINUX #include -#include // ====================================================================== // basic types that we assume to be around @@ -21,8 +20,8 @@ typedef unsigned long uint32; typedef signed char int8; typedef signed short int16; typedef signed long int32; -typedef int64_t int64; -typedef uint64_t uint64; +typedef signed long long int int64; +typedef unsigned long long int uint64; typedef float real; typedef FILE* FILE_HANDLE;