Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 570 → Rev 571

/kernel/trunk/generic/include/align.h
42,6 → 42,6
* @param s Address or size to be aligned.
* @param a Size of alignment, must be power of 2.
*/
#define ALIGN_UP(s, a) ((s + ((a) - 1)) & ~((a) - 1))
#define ALIGN_UP(s, a) (((s) + ((a) - 1)) & ~((a) - 1))
 
#endif