diff --git a/src/x86/windows/init.c b/src/x86/windows/init.c index 274075c0..2c4ed403 100644 --- a/src/x86/windows/init.c +++ b/src/x86/windows/init.c @@ -17,6 +17,10 @@ #endif +static inline uint32_t max(uint32_t a, uint32_t b) { + return a > b ? a : b; +} + static inline uint32_t bit_mask(uint32_t bits) { return (UINT32_C(1) << bits) - UINT32_C(1); }