pl-sem/sem7/restrict-0.c

8 lines
78 B
C
Raw Normal View History

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