include: Don't redefine ATTRIBUTE_UNUSED

This commit is contained in:
Nick Wellnhofer 2024-06-15 19:17:13 +02:00
parent 7c3151903d
commit b61a960bf6

View File

@ -41,10 +41,12 @@
* Attributes
*/
#if __GNUC__ * 100 + __GNUC_MINOR__ >= 207
#define ATTRIBUTE_UNUSED __attribute__((unused))
#else
#define ATTRIBUTE_UNUSED
#ifndef ATTRIBUTE_UNUSED
#if __GNUC__ * 100 + __GNUC_MINOR__ >= 207
#define ATTRIBUTE_UNUSED __attribute__((unused))
#else
#define ATTRIBUTE_UNUSED
#endif
#endif
#if !defined(__clang__) && (__GNUC__ * 100 + __GNUC_MINOR__ >= 403)