lib_restrict.c 108 B

123456789
  1. #include "lib_restrict.h"
  2. int foo(int* restrict a, int* restrict b)
  3. {
  4. (void)a;
  5. (void)b;
  6. return 0;
  7. }