Fix _SC_NPROCESSORS_ONLN on Windows
[fio.git] / lib / hweight.h
CommitLineData
51aa2da8
JA
1#ifndef FIO_HWEIGHT_H
2#define FIO_HWEIGHT_H
3
4#include <inttypes.h>
5
6unsigned int hweight8(uint8_t w);
7unsigned int hweight32(uint32_t w);
8
9#endif