summaryrefslogtreecommitdiffstats
path: root/scripts/include/asm-generic/bitsperlong.h
blob: eb2dfd9065a7832ba289703356c8db823a26036e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* SPDX-License-Identifier: GPL-2.0 */

#ifndef __BITS_PER_LONG_H_
#define __BITS_PER_LONG_H_

#ifndef __WORDSIZE
#define __WORDSIZE (__SIZEOF_LONG__ * 8)
#endif

#define BITS_PER_LONG __WORDSIZE

#endif