We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0206e5f commit 6ab85bfCopy full SHA for 6ab85bf
include/rtdef.h
@@ -250,7 +250,7 @@ typedef int (*init_fn_t)(void);
250
*
251
* @def RT_ALIGN(size, align)
252
* Return the most contiguous size aligned at specified width. RT_ALIGN(13, 4)
253
- * would return 16.
+ * would return 16.
254
* @note align Must be an integer power of 2 or the result will be incorrect
255
*/
256
#define RT_ALIGN(size, align) (((size) + (align) - 1) & ~((align) - 1))
0 commit comments