mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 09:21:26 +03:00
29 lines
391 B
Plaintext
29 lines
391 B
Plaintext
|
@@
|
||
|
expression x, y;
|
||
|
@@
|
||
|
- if (x < y)
|
||
|
- return -1;
|
||
|
- if (x > y)
|
||
|
- return 1;
|
||
|
- return 0;
|
||
|
+ return CMP(x, y);
|
||
|
@@
|
||
|
expression x, y;
|
||
|
@@
|
||
|
- if (x < y)
|
||
|
- return -1;
|
||
|
- else if (x > y)
|
||
|
- return 1;
|
||
|
- return 0;
|
||
|
+ return CMP(x, y);
|
||
|
@@
|
||
|
expression x, y;
|
||
|
@@
|
||
|
- if (x < y)
|
||
|
- return -1;
|
||
|
- else if (x > y)
|
||
|
- return 1;
|
||
|
- else
|
||
|
- return 0;
|
||
|
+ return CMP(x, y);
|