1 2int foo(int* restrict a, int* restrict b) 3{ 4 (void)a; 5 (void)b; 6 return 0; 7} 8 9int main(void) 10{ 11 return 0; 12} 13 14