Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98791af commit 1569108Copy full SHA for 1569108
1 file changed
Include/pyport.h
@@ -446,4 +446,13 @@ typedef struct fd_set {
446
}
447
#endif
448
449
+/*
450
+ * Hide GCC attributes from compilers that don't support them.
451
+ */
452
+#if !defined(__GNUC__) || __GNUC__ < 2 || \
453
+ (__GNUC__ == 2 && __GNUC_MINOR__ < 7) || \
454
+ defined(NEXT)
455
+#define __attribute__(__x)
456
+#endif
457
+
458
#endif /* Py_PYPORT_H */
0 commit comments