]> err.no Git - util-linux/commitdiff
lib: [c] add ignore_result()
authorKarel Zak <kzak@redhat.com>
Tue, 4 Jan 2011 20:34:45 +0000 (21:34 +0100)
committerKarel Zak <kzak@redhat.com>
Tue, 4 Jan 2011 20:34:45 +0000 (21:34 +0100)
Signed-off-by: Karel Zak <kzak@redhat.com>
include/c.h

index bed8f5ba087f9473ca10a47fb26f5942d851b88c..cfee616fbe0948095af5ae3ca79b0975d6d65d4a 100644 (file)
@@ -62,6 +62,8 @@
        _max1 > _max2 ? _max1 : _max2; })
 #endif
 
+#define ignore_result(x) ({ typeof(x) __dummy = (x); (void) __dummy; })
+
 static inline __attribute__((const)) int is_power_of_2(unsigned long num)
 {
        return (num != 0 && ((num & (num - 1)) == 0));