diff options
Diffstat (limited to 'unix-cpy/mpconfigport.h')
-rw-r--r-- | unix-cpy/mpconfigport.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/unix-cpy/mpconfigport.h b/unix-cpy/mpconfigport.h index a4b5cc0879..4d1deb8793 100644 --- a/unix-cpy/mpconfigport.h +++ b/unix-cpy/mpconfigport.h @@ -34,16 +34,16 @@ // type definitions for the specific machine #ifdef __LP64__ -typedef long machine_int_t; // must be pointer size -typedef unsigned long machine_uint_t; // must be pointer size +typedef long mp_int_t; // must be pointer size +typedef unsigned long mp_uint_t; // must be pointer size #else // These are definitions for machines where sizeof(int) == sizeof(void*), // regardless for actual size. -typedef int machine_int_t; // must be pointer size -typedef unsigned int machine_uint_t; // must be pointer size +typedef int mp_int_t; // must be pointer size +typedef unsigned int mp_uint_t; // must be pointer size #endif -#define BYTES_PER_WORD sizeof(machine_int_t) +#define BYTES_PER_WORD sizeof(mp_int_t) typedef void *machine_ptr_t; // must be of pointer size typedef const void *machine_const_ptr_t; // must be of pointer size |