xref: /openbsd-src/sys/dev/pci/drm/include/asm/bitsperlong.h (revision 505ee9ea3b177e2387d907a91ca7da069f3f14d8)
1 /* Public domain. */
2 
3 #ifndef _ASM_BITSPERLONG_H
4 #define _ASM_BITSPERLONG_H
5 
6 #ifdef __LP64__
7 #define BITS_PER_LONG		64
8 #else
9 #define BITS_PER_LONG		32
10 #endif
11 #define BITS_PER_LONG_LONG	64
12 
13 #endif
14