SCP: Leverage stdint.h for environments where it is available

This commit is contained in:
Mark Pizzolato 2017-09-07 09:12:06 -07:00
parent a6552b823d
commit e9d5e2e3c9

View file

@ -181,16 +181,28 @@ extern "C" {
/* Length specific integer declarations */ /* Length specific integer declarations */
/* Handle the special/unusual cases first with everything else leveraging stdints.h */
#if defined (VMS) #if defined (VMS)
#include <ints.h> #include <ints.h>
#else #elif defined(_MSC_VER) && (_MSC_VER < 1600)
typedef signed char int8; typedef __int8 int8;
typedef signed short int16; typedef __int16 int16;
typedef signed int int32; typedef __int32 int32;
typedef unsigned char uint8; typedef unsigned __int8 uint8;
typedef unsigned short uint16; typedef unsigned __int16 uint16;
typedef unsigned int uint32; typedef unsigned __int32 uint32;
#endif #else
/* All modern/standard compiler environments */
/* any other environment needa a special case above */
#include <stdint.h>
typedef int8_t int8;
typedef int16_t int16;
typedef int32_t int32;
typedef uint8_t uint8;
typedef uint16_t uint16;
typedef uint32_t uint32;
#endif /* end standard integers */
typedef int t_stat; /* status */ typedef int t_stat; /* status */
typedef int t_bool; /* boolean */ typedef int t_bool; /* boolean */