Code

src/daemon/common.c: Rewrite check_capability() using cap_get_bound().
[collectd.git] / src / daemon / collectd.h
index 5c72fbda1f041dbee134a93e2f5c2a9c42c48ee8..3cb0c1bb62d340737a763841202655ebcb6f99c8 100644 (file)
@@ -275,16 +275,10 @@ typedef int _Bool;
 #endif
 
 /* Only enable __attribute__() for compilers known to support it. */
-#if defined(__clang__)
-# define clang_attr(x) __attribute__(x)
-# define gcc_attr(x) /**/
-#elif __GNUC__
-# define clang_attr(x) /**/
-# define gcc_attr(x) __attribute__(x)
-#else
-# define clang_attr(x) /**/
-# define gcc_attr(x) /**/
-# define __attribute__(x) /**/
+#if !defined(__clang__) && !defined(__GNUC__)
+# if !defined(__attribute__)
+#  define __attribute__(x) /**/
+# endif
 #endif
 
 #if defined(COLLECT_DEBUG) && COLLECT_DEBUG && defined(__GNUC__) && __GNUC__