Don't use GCCisms to define types when

+       building with the SUNPRO compiler.
This commit is contained in:
Anthony Green
2013-01-10 01:19:43 -05:00
parent 2d9b393975
commit 6a028caec1
2 changed files with 6 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
2013-01-10 Anthony Green <green@moxielogic.com>
* include/ffi_common.h: Don't use GCCisms to define types when
building with the SUNPRO compiler.
2013-01-10 Anthony Green <green@moxielogic.com>
* configure.ac: Put local.exp in the right place.

View File

@@ -87,7 +87,7 @@ typedef struct
} extended_cif;
/* Terse sized type definitions. */
#if defined(_MSC_VER) || defined(__sgi)
#if defined(_MSC_VER) || defined(__sgi) || defined(__SUNPRO_C)
typedef unsigned char UINT8;
typedef signed char SINT8;
typedef unsigned short UINT16;