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.
10 lines
331 B
10 lines
331 B
/* stdint.h not available */
|
|
#if defined(DUK_F_WINDOWS) && defined(_MSC_VER)
|
|
#if (_MSC_VER < 1700)
|
|
/* VS2012+ has stdint.h, < VS2012 does not (but it's available for download). */
|
|
#define DUK_F_NO_STDINT_H
|
|
#endif
|
|
#endif
|
|
#if !defined(DUK_F_NO_STDINT_H) && (defined(DUK_F_TOS) || defined(DUK_F_BCC))
|
|
#define DUK_F_NO_STDINT_H
|
|
#endif
|
|
|