Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Kitware
GitHub Repository: Kitware/CMake
Path: blob/master/Tests/CMakeCommands/target_compile_features/main.c
3152 views
1
2
int foo(int* restrict a, int* restrict b)
3
{
4
(void)a;
5
(void)b;
6
return 0;
7
}
8
9
int main(void)
10
{
11
return 0;
12
}
13
14