mark test_exit as noreturn #1891129 by Marcus Meissner
diff --git a/include/compiler.h b/include/compiler.h
new file mode 100644
index 0000000..e8ad80a
--- /dev/null
+++ b/include/compiler.h
@@ -0,0 +1,12 @@
+/*
+ * compiler.h: take care of fun compiler details here
+ *
+ * Licensed under the GPL-2 or later
+ */
+
+#ifndef __LTP_COMPILER_H__
+#define __LTP_COMPILER_H__
+
+#define attribute_noreturn __attribute__((noreturn))
+
+#endif