Skip to content
Snippets Groups Projects
Commit 1f8c6b51 authored by deuce's avatar deuce
Browse files

Do the Borland/MSVC long long shuffle.

parent 242786d3
No related branches found
No related tags found
No related merge requests found
......@@ -12,33 +12,41 @@
#ifndef INT64
#ifdef _MSC_VER
#define INT64 _int64
#define INT64 __int64
#else
#define INT64 long long int
#endif
#endif
#ifndef INT64FORMAT
#ifdef __unix__
#define INT64FORMAT "lld"
#ifdef __BORLANDC__
#define INT64FORMAT "Ld"
#else
#define INT64FORMAT "I64d"
#ifdef _MSC_VER
#define INT64FORMAT "I64d"
#else
#define INT64FORMAT "lld"
#endif
#endif
#endif
#ifndef QWORD
#ifdef _MSC_VER
#define QWORD unsigned _int64
#else
#e
#define QWORD unsigned long long int
#endif
#endif
#ifndef QWORDFORMAT
#ifdef __unix__
#define QWORDFORMAT "llu"
#ifdef __BORLANDC__
#define QWORDFORMAT "Lu"
#else
#define QWORDFORMAT "I64u"
#ifdef _MSC_VER
#define QWORDFORMAT "I64u"
#else
#define QWORDFORMAT "llu"
#endif
#endif
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment