July 2025 | ||||||
Mo | Tu | We | Th | Fr | Sa | Su |
30 | 1 | 2 | 3 | 4 | 5 | 6 |
7 | 8 | 9 | 10 | 11 | 12 | 13 |
14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 | 23 | 24 | 25 | 26 | 27 |
28 | 29 | 30 | 31 | 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 |
01: #ifndef __ASM_X86_BITSPERLONG_H 02: #define __ASM_X86_BITSPERLONG_H 03: 04: #ifdef __x86_64__ 05: # define __BITS_PER_LONG 64 06: #else 07: # define __BITS_PER_LONG 32 08: #endif 09: 10: #include <asm-generic/bitsperlong.h> 11: 12: #endif /* __ASM_X86_BITSPERLONG_H */ 13: 14: