|
Lines 185-198
typedef double FLOAT_T;
|
Link Here
|
|---|
|
#define LITTLE_ENDIAN | #define LITTLE_ENDIAN |
#endif | #endif |
| |
/* DEC MMS has 64 bit long words */ |
|
#ifdef DEC |
|
typedef unsigned int uint32; | typedef unsigned int uint32; |
typedef int int32; |
typedef int int32; |
#else |
|
typedef unsigned long uint32; |
|
typedef long int32; |
|
#endif |
|
typedef unsigned short uint16; | typedef unsigned short uint16; |
typedef short int16; | typedef short int16; |
typedef unsigned char uint8; | typedef unsigned char uint8; |