mirror of
https://github.com/upx/upx.git
synced 2024-11-23 04:39:59 +00:00
src: new ACC version
This commit is contained in:
parent
cebd4392f2
commit
a77adcd4c7
@ -29,7 +29,7 @@
|
||||
|
||||
#ifndef __ACC_H_INCLUDED
|
||||
#define __ACC_H_INCLUDED 1
|
||||
#define ACC_VERSION 20240309L
|
||||
#define ACC_VERSION 20240701L
|
||||
#if defined(__CYGWIN32__) && !defined(__CYGWIN__)
|
||||
# define __CYGWIN__ __CYGWIN32__
|
||||
#endif
|
||||
@ -3145,7 +3145,15 @@ ACC_COMPILE_TIME_ASSERT_HEADER(ACC_SIZEOF_PTRDIFF_T == sizeof(ptrdiff_t))
|
||||
ACC_COMPILE_TIME_ASSERT_HEADER(sizeof(acc_int64f_t) == ACC_SIZEOF_ACC_INT64F_T)
|
||||
#endif
|
||||
#if !defined(acc_intptr_t)
|
||||
#if 1 && (ACC_OS_OS400 && (ACC_SIZEOF_VOID_P == 16))
|
||||
#if defined(__INTPTR_TYPE__) && defined(__UINTPTR_TYPE__)
|
||||
# if !(ACC_LANG_ASSEMBLER)
|
||||
typedef __INTPTR_TYPE__ acc_intptr_t;
|
||||
typedef __UINTPTR_TYPE__ acc_uintptr_t;
|
||||
# endif
|
||||
# define acc_intptr_t acc_intptr_t
|
||||
# define acc_uintptr_t acc_uintptr_t
|
||||
# define ACC_SIZEOF_ACC_INTPTR_T ACC_SIZEOF_VOID_P
|
||||
#elif 1 && (ACC_OS_OS400 && (ACC_SIZEOF_VOID_P == 16))
|
||||
# define __ACC_INTPTR_T_IS_POINTER 1
|
||||
# if !(ACC_LANG_ASSEMBLER)
|
||||
typedef char * acc_intptr_t;
|
||||
@ -4407,7 +4415,15 @@ void __ACC_UA_SET_LE32(__acc_ua_volatile void* pp, unsigned long v) {
|
||||
ACC_COMPILE_TIME_ASSERT_HEADER(sizeof(acc_int64f_t) == ACC_SIZEOF_ACC_INT64F_T)
|
||||
#endif
|
||||
#if !defined(acc_intptr_t)
|
||||
#if 1 && (ACC_OS_OS400 && (ACC_SIZEOF_VOID_P == 16))
|
||||
#if defined(__INTPTR_TYPE__) && defined(__UINTPTR_TYPE__)
|
||||
# if !(ACC_LANG_ASSEMBLER)
|
||||
typedef __INTPTR_TYPE__ acc_intptr_t;
|
||||
typedef __UINTPTR_TYPE__ acc_uintptr_t;
|
||||
# endif
|
||||
# define acc_intptr_t acc_intptr_t
|
||||
# define acc_uintptr_t acc_uintptr_t
|
||||
# define ACC_SIZEOF_ACC_INTPTR_T ACC_SIZEOF_VOID_P
|
||||
#elif 1 && (ACC_OS_OS400 && (ACC_SIZEOF_VOID_P == 16))
|
||||
# define __ACC_INTPTR_T_IS_POINTER 1
|
||||
# if !(ACC_LANG_ASSEMBLER)
|
||||
typedef char * acc_intptr_t;
|
||||
|
Loading…
Reference in New Issue
Block a user