mirror of
https://github.com/systemd/systemd.git
synced 2025-02-09 13:57:42 +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);
|