diff options
author | Sam James <sam@gentoo.org> | 2023-04-19 04:29:10 +0100 |
---|---|---|
committer | Mike Frysinger <vapier@gmail.com> | 2023-04-19 16:44:51 -0400 |
commit | eb8831a1416ab2ee8123b3add78421c2aa316b39 (patch) | |
tree | 3d5759e4a48db6a806174a8c8f1f0af24be11dba /src/libeinfo/einfo.h | |
parent | 0b5cb3abcb500d38f7302addb4182b07c1dc2ad7 (diff) |
Rename attribute macros to namespaced RC_*
This conflicts with linux-headers which uses __unused for some padding members
on ppc64le at least.
Closes: https://github.com/OpenRC/openrc/issues/622
Diffstat (limited to 'src/libeinfo/einfo.h')
-rw-r--r-- | src/libeinfo/einfo.h | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/src/libeinfo/einfo.h b/src/libeinfo/einfo.h index d9f1b54e..4fd5425b 100644 --- a/src/libeinfo/einfo.h +++ b/src/libeinfo/einfo.h @@ -13,13 +13,8 @@ #ifndef __EINFO_H__ #define __EINFO_H__ -#if defined(__GNUC__) -# define EINFO_PRINTF(a, b) __attribute__((__format__(__printf__, a, b))) -# define EINFO_XPRINTF(a, b) __attribute__((__noreturn__,__format__(__printf__, a, b))) -#else -# define EINFO_PRINTF(a, b) -# define EINFO_XPRINTF(a, b) -#endif +#define EINFO_PRINTF(a, b) __attribute__((__format__(__printf__, a, b))) +#define EINFO_XPRINTF(a, b) __attribute__((__noreturn__, __format__(__printf__, a, b))) #include <sys/types.h> #include <stdbool.h> |