msvc 2015 - client will break if integer types are redefined on this compiler.
This commit is contained in:
parent
08cc2350b9
commit
3ff0b11f7b
1 changed files with 4 additions and 0 deletions
|
|
@ -218,12 +218,16 @@ typedef unsigned char ecl_base_char;
|
|||
/* #undef HAVE_FLOAT_COMPLEX */
|
||||
|
||||
/* Missing integer types */
|
||||
#if _MSC_VER < 1900
|
||||
typedef char int8_t;
|
||||
typedef short int16_t;
|
||||
typedef int int32_t;
|
||||
typedef unsigned char uint8_t;
|
||||
typedef unsigned short uint16_t;
|
||||
typedef unsigned int uint32_t;
|
||||
#else
|
||||
#include <stdint.h>
|
||||
#endif
|
||||
|
||||
/* We can use small, two-words conses, without type information */
|
||||
/* #undef ECL_SMALL_CONS */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue