aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/zexy.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/zexy.h b/src/zexy.h
index 357b412..27f5d7e 100644
--- a/src/zexy.h
+++ b/src/zexy.h
@@ -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;