Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 27c59b5e authored by Scott James Remnant's avatar Scott James Remnant
Browse files

Use int64_t instead of non-standard __int64

Change-Id: I482b861364531d27ef89aab6f5617a060176de83
parent c9275ee2
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -41,7 +41,7 @@ typedef long SINT32;
#if (SBC_FOR_EMBEDDED_LINUX == TRUE)
typedef long long SINT64;
#else
typedef __int64 SINT64;
typedef int64_t SINT64;
#endif

#elif (SBC_IS_64_MULT_IN_WINDOW_ACCU == TRUE) || (SBC_IS_64_MULT_IN_IDCT == TRUE)
@@ -49,7 +49,7 @@ typedef __int64 SINT64;
#if (SBC_FOR_EMBEDDED_LINUX == TRUE)
typedef long long SINT64;
#else
typedef __int64 SINT64;
typedef int64_t SINT64;
#endif

#endif