6_7_3_02_restrict_param.c (95B)
1 int rd(int* restrict p) { return *p; } 2 3 int test_main(void) { 4 int x = 42; 5 return rd(&x); 6 }