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