pl-sem/sem7/restrict-1.c
2023-08-18 01:08:53 +03:00

7 lines
96 B
C

/* restrict-1.c */
void f(int *restrict x, int *restrict add) {
*x += *add;
*x += *add;
}