#ifndef _UTIL_UNITS_H #define _UTIL_UNITS_H /* useful unit macros for constants */ #define _KB_bytes(x) ((x) << 10UL) #define _MB_bytes(x) ((x) << 20UL) #define _GB_bytes(x) ((x) << 30UL) #endif /* _UTIL_UNITS_H */