X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fshared%2Futil.h;h=b56ffbde45657c3121c82450c6330c53afde3153;hb=95eb099fa8a90212ed2aef82bad360f147bc19c2;hp=7dfabbc07d7701802790921e690fb805b83e0e25;hpb=63c372cb9df3bee01e3bf8cd7f96f336bddda846;p=elogind.git diff --git a/src/shared/util.h b/src/shared/util.h index 7dfabbc07..b56ffbde4 100644 --- a/src/shared/util.h +++ b/src/shared/util.h @@ -872,16 +872,6 @@ static inline unsigned log2u(unsigned x) { return sizeof(unsigned) * 8 - __builtin_clz(x) - 1; } -static inline unsigned log2u64(uint64_t x) { - assert(x > 0); - -#if __SIZEOF_LONG_LONG__ == 8 - return 64 - __builtin_clzll(x) - 1; -#else -#error "Wut?" -#endif -} - static inline unsigned log2u_round_up(unsigned x) { assert(x > 0);