June 2025 | ||||||
Mo | Tu | We | Th | Fr | Sa | Su |
26 | 27 | 28 | 29 | 30 | 31 | 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 | 1 | 2 | 3 | 4 | 5 | 6 |
01: /* This file selects the right generated file of `__stub_FUNCTION' macros 02: based on the architecture being compiled for. */ 03: 04: #include <bits/wordsize.h> 05: 06: #if __WORDSIZE == 32 07: # include <gnu/stubs-32.h> 08: #elif __WORDSIZE == 64 09: # include <gnu/stubs-64.h> 10: #else 11: # error "unexpected value for __WORDSIZE macro" 12: #endif 13: