diff options
Diffstat (limited to 'Tests/CMakeCommands/target_compile_features/lib_restrict.h')
-rw-r--r-- | Tests/CMakeCommands/target_compile_features/lib_restrict.h | 7 |
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 |