mirror of https://github.com/svaarala/duktape.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
445 B
9 lines
445 B
/* ULL / LL preprocessor constants should be avoided because they're not
|
|
* always available. With suitable options, some compilers will support
|
|
* 64-bit integer types but won't support ULL / LL preprocessor constants.
|
|
* Assume C99/C++11 environments have these. However, BCC is nominally
|
|
* C99 but doesn't support these constants.
|
|
*/
|
|
#if (defined(DUK_F_C99) || defined(DUK_F_CPP11)) && !defined(DUK_F_BCC)
|
|
#define DUK_F_ULL_CONSTS
|
|
#endif
|
|
|