diff options
-rw-r--r-- | src/zexy.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -55,7 +55,6 @@ # define Z_SIMD_BYTEALIGN (128/8) /* assume 128 bits */ # define Z_SIMD_CHKBLOCKSIZE(n) (!(n&(Z_SIMD_BLOCK-1))) # define Z_SIMD_CHKALIGN(ptr) ( ((unsigned long)(ptr) & (Z_SIMD_BYTEALIGN-1)) == 0 ) - #endif /* __SSE__ */ #include <math.h> @@ -88,6 +87,8 @@ #define ZEXY_USEVAR(x) x=x +#define ZEXY_TYPE_EQUAL(type1, type2) (sizeof(type1) == sizeof(type2)) + typedef struct _mypdlist { t_object x_obj; |