Add ROUND_UP_4 macro

This commit is contained in:
Jack Andersen 2016-03-30 20:17:05 -10:00
parent ae14d51607
commit 34d3bd6724
1 changed files with 1 additions and 0 deletions

View File

@ -68,6 +68,7 @@ typedef struct stat64 stat64_t;
#define ROUND_UP_32(val) (((val) + 31) & ~31)
#define ROUND_UP_16(val) (((val) + 15) & ~15)
#define ROUND_UP_4(val) (((val) + 3) & ~3)
#ifndef ENABLE_BITWISE_ENUM
#define ENABLE_BITWISE_ENUM(type)\