restrict
는 프로그래머에 의해 의도된 포인터 선언방법이다.int *restrict resptr = (int *)malloc(sizeof(int)*10);
(int *) malloc(sizeof(int) * 10)
으로 만든 주소 공간에 접속하기 위해서는 오로지 resptr라는 포인터 변수만을 사용할 수 있다는 의미https://stackoverflow.com/questions/745870/realistic-usage-of-the-c99-restrict-keyword/745877#745877