xref: /openbsd/sys/dev/pci/drm/include/asm/bitsperlong.h (revision 7f4dd379)
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