pl-sem/sem7/restrict-1.c

8 lines
96 B
C
Raw Normal View History

2023-08-17 22:08:53 +00:00
/* restrict-1.c */
void f(int *restrict x, int *restrict add) {
*x += *add;
*x += *add;
}