"types.h" doxygen fix
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
This commit is contained in:
parent
9a98e83b49
commit
66300d5966
|
@ -85,8 +85,8 @@ typedef bool _Bool;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Rounds @c m up to the nearest multiple of @c n using division.
|
* Rounds @c m up to the nearest multiple of @c n using division.
|
||||||
* @params m The value to round up to @c n.
|
* @param m The value to round up to @c n.
|
||||||
* @params n Round @c m up to a multiple of this number.
|
* @param n Round @c m up to a multiple of this number.
|
||||||
* @returns The rounded integer value.
|
* @returns The rounded integer value.
|
||||||
*/
|
*/
|
||||||
#define DIV_ROUND_UP(m, n) (((m) + (n) - 1) / (n))
|
#define DIV_ROUND_UP(m, n) (((m) + (n) - 1) / (n))
|
||||||
|
|
Loading…
Reference in New Issue