c_restrict.c 79 B

1234567
  1. int f(int* restrict a, int* restrict b)
  2. {
  3. (void)a;
  4. (void)b;
  5. return 0;
  6. }