mirror of
https://git.proxmox.com/git/systemd
synced 2025-08-13 14:55:12 +00:00
22 lines
249 B
Plaintext
22 lines
249 B
Plaintext
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
@@
|
|
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
|