diff --git a/reactos/include/crt/mingw32/intrin_x86.h b/reactos/include/crt/mingw32/intrin_x86.h index 6444fef98d0..e3257854a8d 100644 --- a/reactos/include/crt/mingw32/intrin_x86.h +++ b/reactos/include/crt/mingw32/intrin_x86.h @@ -1253,12 +1253,12 @@ __INTRIN_INLINE unsigned short __popcnt16(unsigned short value) } #ifdef __x86_64__ -unsigned long long __lzcnt64(unsigned long long value) +__INTRIN_INLINE unsigned long long __lzcnt64(unsigned long long value) { return __builtin_clzll(value); } -unsigned long long __popcnt64(unsigned long long value) +__INTRIN_INLINE unsigned long long __popcnt64(unsigned long long value) { return __builtin_popcountll(value); }