summaryrefslogtreecommitdiff
path: root/macro.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2010-02-03 14:25:37 +0100
committerLennart Poettering <lennart@poettering.net>2010-02-03 14:25:37 +0100
commita65d570117dc73a3af5084319b645ab1556562e5 (patch)
treecd53759875da62de10383e86cf6bfa3f0496bddd /macro.h
parent47be870bd83fb3719dffc3ee9348a409ab762a14 (diff)
macro: drop double __ prefix to make sure we don't collide with gcc/glibc definitions
Diffstat (limited to 'macro.h')
-rw-r--r--macro.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/macro.h b/macro.h
index f7ccf44f76..76ae465b90 100644
--- a/macro.h
+++ b/macro.h
@@ -25,16 +25,16 @@
#include <assert.h>
#include <sys/types.h>
-#define __printf_attr(a,b) __attribute__ ((format (printf, a, b)))
-#define __sentinel __attribute__ ((sentinel))
-#define __noreturn __attribute__((noreturn))
-#define __unused __attribute__ ((unused))
-#define __destructor __attribute__ ((destructor))
-#define __pure __attribute__ ((pure))
-#define __const __attribute__ ((const))
-#define __deprecated __attribute__ ((deprecated))
-#define __packed __attribute__ ((packed))
-#define __malloc __attribute__ ((malloc))
+#define _printf_attr(a,b) __attribute__ ((format (printf, a, b)))
+#define _sentinel __attribute__ ((sentinel))
+#define _noreturn __attribute__((noreturn))
+#define _unused __attribute__ ((unused))
+#define _destructor __attribute__ ((destructor))
+#define _pure __attribute__ ((pure))
+#define _const __attribute__ ((const))
+#define _deprecated __attribute__ ((deprecated))
+#define _packed __attribute__ ((packed))
+#define _malloc __attribute__ ((malloc))
/* Rounds up */
static inline size_t ALIGN(size_t l) {