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