1 2#ifndef LIB_RESTRICT_H 3#define LIB_RESTRICT_H 4 5int foo(int* restrict a, int* restrict b); 6 7#endif 8 9