summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--libvirt-override.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/libvirt-override.c b/libvirt-override.c
index acd06a6..c2c1c18 100644
--- a/libvirt-override.c
+++ b/libvirt-override.c
@@ -51,6 +51,17 @@ extern void initcygvirtmod(void);
#define xalloc_oversized(n, s) \
((size_t) (sizeof (ptrdiff_t) <= sizeof (size_t) ? -1 : -2) / (s) < (n))
+/* The __attribute__((__warn_unused_result__)) feature
+ is available in gcc versions 3.4 and newer,
+ while the typeof feature has been available since 2.7 at least. */
+#if 3 < __GNUC__ + (4 <= __GNUC_MINOR__)
+# define ignore_value(x) \
+ (__extension__ ({ __typeof__ (x) __x = (x); (void) __x; }))
+#else
+# define ignore_value(x) ((void) (x))
+#endif
+
+
#if 0
# define DEBUG_ERROR 1
#endif