mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 09:21:26 +03:00
21 lines
256 B
Plaintext
21 lines
256 B
Plaintext
|
@@
|
||
|
expression x, y;
|
||
|
@@
|
||
|
- ((x + y - 1) / y)
|
||
|
+ DIV_ROUND_UP(x, y)
|
||
|
@@
|
||
|
expression x, y;
|
||
|
@@
|
||
|
- ((x + (y - 1)) / y)
|
||
|
+ DIV_ROUND_UP(x, y)
|
||
|
@@
|
||
|
expression x, y;
|
||
|
@@
|
||
|
- (x + y - 1) / y
|
||
|
+ DIV_ROUND_UP(x, y)
|
||
|
@@
|
||
|
expression x, y;
|
||
|
@@
|
||
|
- (x + (y - 1)) / y
|
||
|
+ DIV_ROUND_UP(x, y)
|