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

7 lines
78 B
C

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