From 34d3bd67245a533c1dacedcfd031d67b41c407e6 Mon Sep 17 00:00:00 2001 From: Jack Andersen Date: Wed, 30 Mar 2016 20:17:05 -1000 Subject: [PATCH] Add ROUND_UP_4 macro --- include/athena/Global.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/include/athena/Global.hpp b/include/athena/Global.hpp index d3c6c7c..85b57d5 100644 --- a/include/athena/Global.hpp +++ b/include/athena/Global.hpp @@ -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)\