summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorGregory Pakosz <gregory.pakosz@gmail.com>2017-04-27 13:20:36 +0200
committerGregory Pakosz <gregory.pakosz@gmail.com>2017-04-27 13:22:28 +0200
commitbd72848c7af9302df50a7a11652c77166d17caa8 (patch)
tree0e2610470931c95473e4b3a0c404ab7ebb1d44b6 /include
parentb841ae70a05a5e11de1fca1b4551189db0895cf2 (diff)
downloadlibffi-bd72848c7af9302df50a7a11652c77166d17caa8.tar.gz
Prefix ALIGN macros with FFI_
Diffstat (limited to 'include')
-rw-r--r--include/ffi_common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ffi_common.h b/include/ffi_common.h
index 00eae1b..d1d9fd8 100644
--- a/include/ffi_common.h
+++ b/include/ffi_common.h
@@ -74,7 +74,7 @@ void ffi_type_test(ffi_type *a, char *file, int line);
#define FFI_ASSERT_VALID_TYPE(x)
#endif
-#define ALIGN(v, a) (((((size_t) (v))-1) | ((a)-1))+1)
+#define FFI_ALIGN(v, a) (((((size_t) (v))-1) | ((a)-1))+1)
#define ALIGN_DOWN(v, a) (((size_t) (v)) & -a)
/* Perform machine dependent cif processing */