Fix 1e0bea5b: Incorrect extern declarations

This commit is contained in:
Jonathan G Rennison
2021-11-03 01:18:36 +00:00
parent 3373be7b0d
commit 914da4bdb9

View File

@@ -230,10 +230,10 @@ static inline uint8 FindFirstBit(T value)
} }
#else #else
if (sizeof(T) <= sizeof(uint32)) { if (sizeof(T) <= sizeof(uint32)) {
extern uint8 FindFirstBit32(x); extern uint8 FindFirstBit32(uint32 x);
return FindFirstBit32(value); return FindFirstBit32(value);
} else { } else {
extern uint8 FindFirstBit64(x); extern uint8 FindFirstBit64(uint64 x);
return FindFirstBit64(value); return FindFirstBit64(value);
} }
#endif #endif