Fix __must_check compile on older compilers

Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
diff --git a/compiler-gcc4.h b/compiler-gcc4.h
new file mode 100644
index 0000000..bb9cc7c
--- /dev/null
+++ b/compiler-gcc4.h
@@ -0,0 +1,6 @@
+#ifndef FIO_COMPILER_GCC4_H
+#define FIO_COMPILER_GCC4_H
+
+#define __must_check		__attribute__((warn_unused_result))
+
+#endif