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: /* This file specifies the native word size of the machine, which indicates 02: the ELF file class used for executables and shared objects on this 03: machine. */ 04: 05: #ifndef _LINK_H 06: # error "Never use <bits/elfclass.h> directly; include <link.h> instead." 07: #endif 08: 09: #include <bits/wordsize.h> 10: 11: #define __ELF_NATIVE_CLASS __WORDSIZE 12: 13: /* The entries in the .hash table always have a size of 32 bits. */ 14: typedef uint32_t Elf_Symndx; 15: