xref: /aosp_15_r20/external/bpftool/include/linux/bitops.h (revision 858ea5e570667251cdc31d3fe7b846b591105938)
1 /* SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) */
2 
3 #ifndef _LINUX_BITOPS_H_
4 #define _LINUX_BITOPS_H_
5 
6 #ifndef BITS_PER_LONG
7 # define BITS_PER_LONG __WORDSIZE
8 #endif
9 
10 #define BITS_PER_BYTE 8
11 
12 #endif
13