Skip to content
Snippets Groups Projects
Commit 20bc921f authored by nbd's avatar nbd
Browse files

mtools: fix build errors on mac os x (#19064)


Signed-off-by: default avatarFelix Fietkau <nbd@openwrt.org>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44512 3c298f89-4303-0410-b956-a3cf2f4a3e73
parent a74037f3
No related branches found
No related tags found
No related merge requests found
--- a/sysincludes.h
+++ b/sysincludes.h
@@ -101,14 +101,8 @@ typedef void *caddr_t;
#if defined __GNUC__ && defined __STDC__
/* gcc -traditional doesn't have PACKED, UNUSED and NORETURN */
# define PACKED __attribute__ ((packed))
-# if __GNUC__ == 2 && __GNUC_MINOR__ > 6 || __GNUC__ >= 3
-/* gcc 2.6.3 doesn't have "unused" */ /* mool */
-# define UNUSED(x) x __attribute__ ((unused));x
-# define UNUSEDP __attribute__ ((unused))
-# else
-# define UNUSED(x) x
-# define UNUSEDP /* */
-# endif
+# define UNUSED(x) x
+# define UNUSEDP /* */
# define NORETURN __attribute__ ((noreturn))
#else
# define UNUSED(x) x
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment