blob: 68861ddd9dc6e5cf808e09e38a6ee1248f1b51c6 [file] [log] [blame]
#ifndef FIO_HWEIGHT_H
#define FIO_HWEIGHT_H
#include <inttypes.h>
unsigned int hweight8(uint8_t w);
unsigned int hweight32(uint32_t w);
unsigned int hweight64(uint64_t w);
#endif