summaryrefslogtreecommitdiffstats
path: root/Tests/CMakeCommands/target_compile_features/lib_restrict.h
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/CMakeCommands/target_compile_features/lib_restrict.h')
-rw-r--r--Tests/CMakeCommands/target_compile_features/lib_restrict.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/Tests/CMakeCommands/target_compile_features/lib_restrict.h b/Tests/CMakeCommands/target_compile_features/lib_restrict.h
new file mode 100644
index 0000000..eca22be
--- /dev/null
+++ b/Tests/CMakeCommands/target_compile_features/lib_restrict.h
@@ -0,0 +1,7 @@
+
+#ifndef LIB_RESTRICT_H
+#define LIB_RESTRICT_H
+
+int foo(int * restrict a, int * restrict b);
+
+#endif