mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 17:51:22 +03:00
be6b0c2165
Let's use our macros where we can
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)
|