at v192 530 B view raw
1Description: Fix FTBFS with GCC 5 2Author: James Cowgill <james410@cowgill.org.uk> 3Bug-Debian: https://bugs.debian.org/777779 4Forwarded: no 5--- 6This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ 7--- a/icc/icc.h 8+++ b/icc/icc.h 9@@ -100,7 +100,11 @@ 10 #define CF64PREC "LL" /* Constant precision specifier */ 11 12 #ifndef ATTRIBUTE_NORETURN 13+#ifdef _MSC_VER 14 # define ATTRIBUTE_NORETURN __declspec(noreturn) 15+#else 16+# define ATTRIBUTE_NORETURN __attribute__((noreturn)) 17+#endif 18 #endif 19 20 #else /* !__STDC_VERSION__ */