Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Kitware
GitHub Repository: Kitware/CMake
Path: blob/master/Tests/CMakeCommands/target_compile_features/lib_restrict.h
3152 views
1
2
#ifndef LIB_RESTRICT_H
3
#define LIB_RESTRICT_H
4
5
int foo(int* restrict a, int* restrict b);
6
7
#endif
8
9