lib_restrict.h 101 B

1234567
  1. #ifndef LIB_RESTRICT_H
  2. #define LIB_RESTRICT_H
  3. int foo(int * restrict a, int * restrict b);
  4. #endif