dosbox-x/include/util_units.h
2014-06-28 11:05:06 -07:00

12 lines
222 B
C

#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 */