mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 17:51:22 +03:00
21 lines
200 B
Plaintext
21 lines
200 B
Plaintext
|
@@
|
||
|
expression p, q;
|
||
|
identifier r;
|
||
|
statement s;
|
||
|
@@
|
||
|
- if ((r = q) < p)
|
||
|
- s
|
||
|
+ r = q;
|
||
|
+ if (r < p)
|
||
|
+ s
|
||
|
@@
|
||
|
expression p, q;
|
||
|
identifier r;
|
||
|
statement s;
|
||
|
@@
|
||
|
- if ((r = q) >= p)
|
||
|
- s
|
||
|
+ r = q;
|
||
|
+ if (r >= p)
|
||
|
+ s
|