$OpenBSD: patch-src_types_h,v 1.1.1.1 2011/09/21 03:58:08 bentley Exp $
--- src/types.h.orig	Fri Jul  1 10:17:51 2011
+++ src/types.h	Fri Jul  1 10:18:24 2011
@@ -90,17 +90,17 @@
 
 
 #if defined(_MSC_VER) || defined(__INTEL_COMPILER)
-#define ALIGN(X) __declspec(align(X))
+#define DMALIGN(X) __declspec(align(X))
 #elif __GNUC__
-#define ALIGN(X) __attribute__ ((aligned (X)))
+#define DMALIGN(X) __attribute__ ((aligned (X)))
 #else
-#define ALIGN(X)
+#define DMALIGN(X)
 #endif
 
-#define CACHE_ALIGN ALIGN(32)
+#define CACHE_ALIGN DMALIGN(32)
 
 //use this for example when you want a byte value to be better-aligned
-#define FAST_ALIGN ALIGN(4)
+#define FAST_ALIGN DMALIGN(4)
 
 #ifndef FASTCALL
 #ifdef __MINGW32__
