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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
//! Error numbers for every arch supported by linux.

#![cfg_attr(all(not(doc), not(feature = "std")), no_std)]
#![cfg_attr(doc, feature(doc_cfg, doc_auto_cfg, doc_cfg_hide))]
#![cfg_attr(doc, doc(cfg_hide(doc)))]
pub mod linux;
pub(crate) mod macros;

#[cfg(any(doc, feature = "arm", all(target_os = "linux", target_arch = "arm")))]
pub mod arm {
    //! Error numbers for arch `arm`.
    pub use super::linux::arm::Errno;
    #[cfg(any(doc, feature = "iter"))]
    pub use super::linux::arm::ErrnoIter;
}
#[cfg(all(target_os = "linux", target_arch = "arm"))]
pub use arm::Errno;
#[cfg(all(target_os = "linux", target_arch = "arm", any(doc, feature = "iter")))]
pub use arm::ErrnoIter;
#[cfg(any(
    doc,
    feature = "aarch64",
    all(target_os = "linux", target_arch = "aarch64")
))]
pub mod aarch64 {
    //! Error numbers for arch `aarch64`.
    pub use super::linux::arm64::Errno;
    #[cfg(any(doc, feature = "iter"))]
    pub use super::linux::arm64::ErrnoIter;
}
#[cfg(all(target_os = "linux", target_arch = "aarch64"))]
pub use aarch64::Errno;
#[cfg(all(
    target_os = "linux",
    target_arch = "aarch64",
    any(doc, feature = "iter")
))]
pub use aarch64::ErrnoIter;
#[cfg(any(
    doc,
    feature = "hexagon",
    all(target_os = "linux", target_arch = "hexagon")
))]
pub mod hexagon {
    //! Error numbers for arch `hexagon`.
    pub use super::linux::hexagon::Errno;
    #[cfg(any(doc, feature = "iter"))]
    pub use super::linux::hexagon::ErrnoIter;
}
#[cfg(all(target_os = "linux", target_arch = "hexagon"))]
pub use hexagon::Errno;
#[cfg(all(
    target_os = "linux",
    target_arch = "hexagon",
    any(doc, feature = "iter")
))]
pub use hexagon::ErrnoIter;
#[cfg(any(
    doc,
    feature = "loongarch64",
    all(target_os = "linux", target_arch = "loongarch64")
))]
pub mod loongarch64 {
    //! Error numbers for arch `loongarch64`.
    pub use super::linux::loongarch::Errno;
    #[cfg(any(doc, feature = "iter"))]
    pub use super::linux::loongarch::ErrnoIter;
}
#[cfg(all(target_os = "linux", target_arch = "loongarch64"))]
pub use loongarch64::Errno;
#[cfg(all(
    target_os = "linux",
    target_arch = "loongarch64",
    any(doc, feature = "iter")
))]
pub use loongarch64::ErrnoIter;
#[cfg(any(doc, feature = "m68k", all(target_os = "linux", target_arch = "m68k")))]
pub mod m68k {
    //! Error numbers for arch `m68k`.
    pub use super::linux::m68k::Errno;
    #[cfg(any(doc, feature = "iter"))]
    pub use super::linux::m68k::ErrnoIter;
}
#[cfg(all(target_os = "linux", target_arch = "m68k"))]
pub use m68k::Errno;
#[cfg(all(target_os = "linux", target_arch = "m68k", any(doc, feature = "iter")))]
pub use m68k::ErrnoIter;
#[cfg(any(doc, feature = "mips", all(target_os = "linux", target_arch = "mips")))]
pub mod mips {
    //! Error numbers for arch `mips`.
    pub use super::linux::mips::Errno;
    #[cfg(any(doc, feature = "iter"))]
    pub use super::linux::mips::ErrnoIter;
}
#[cfg(all(target_os = "linux", target_arch = "mips"))]
pub use mips::Errno;
#[cfg(all(target_os = "linux", target_arch = "mips", any(doc, feature = "iter")))]
pub use mips::ErrnoIter;
#[cfg(any(
    doc,
    feature = "mips64",
    all(target_os = "linux", target_arch = "mips64")
))]
pub mod mips64 {
    //! Error numbers for arch `mips64`.
    pub use super::linux::mips::Errno;
    #[cfg(any(doc, feature = "iter"))]
    pub use super::linux::mips::ErrnoIter;
}
#[cfg(all(target_os = "linux", target_arch = "mips64"))]
pub use mips64::Errno;
#[cfg(all(
    target_os = "linux",
    target_arch = "mips64",
    any(doc, feature = "iter")
))]
pub use mips64::ErrnoIter;
#[cfg(any(
    doc,
    feature = "powerpc",
    all(target_os = "linux", target_arch = "powerpc")
))]
pub mod powerpc {
    //! Error numbers for arch `powerpc`.
    pub use super::linux::powerpc::Errno;
    #[cfg(any(doc, feature = "iter"))]
    pub use super::linux::powerpc::ErrnoIter;
}
#[cfg(all(target_os = "linux", target_arch = "powerpc"))]
pub use powerpc::Errno;
#[cfg(all(
    target_os = "linux",
    target_arch = "powerpc",
    any(doc, feature = "iter")
))]
pub use powerpc::ErrnoIter;
#[cfg(any(
    doc,
    feature = "powerpc64",
    all(target_os = "linux", target_arch = "powerpc64")
))]
pub mod powerpc64 {
    //! Error numbers for arch `powerpc64`.
    pub use super::linux::powerpc::Errno;
    #[cfg(any(doc, feature = "iter"))]
    pub use super::linux::powerpc::ErrnoIter;
}
#[cfg(all(target_os = "linux", target_arch = "powerpc64"))]
pub use powerpc64::Errno;
#[cfg(all(
    target_os = "linux",
    target_arch = "powerpc64",
    any(doc, feature = "iter")
))]
pub use powerpc64::ErrnoIter;
#[cfg(any(
    doc,
    feature = "riscv32",
    all(target_os = "linux", target_arch = "riscv32")
))]
pub mod riscv32 {
    //! Error numbers for arch `riscv32`.
    pub use super::linux::riscv::Errno;
    #[cfg(any(doc, feature = "iter"))]
    pub use super::linux::riscv::ErrnoIter;
}
#[cfg(all(target_os = "linux", target_arch = "riscv32"))]
pub use riscv32::Errno;
#[cfg(all(
    target_os = "linux",
    target_arch = "riscv32",
    any(doc, feature = "iter")
))]
pub use riscv32::ErrnoIter;
#[cfg(any(
    doc,
    feature = "riscv64",
    all(target_os = "linux", target_arch = "riscv64")
))]
pub mod riscv64 {
    //! Error numbers for arch `riscv64`.
    pub use super::linux::riscv::Errno;
    #[cfg(any(doc, feature = "iter"))]
    pub use super::linux::riscv::ErrnoIter;
}
#[cfg(all(target_os = "linux", target_arch = "riscv64"))]
pub use riscv64::Errno;
#[cfg(all(
    target_os = "linux",
    target_arch = "riscv64",
    any(doc, feature = "iter")
))]
pub use riscv64::ErrnoIter;
#[cfg(any(
    doc,
    feature = "s390x",
    all(target_os = "linux", target_arch = "s390x")
))]
pub mod s390x {
    //! Error numbers for arch `s390x`.
    pub use super::linux::s390::Errno;
    #[cfg(any(doc, feature = "iter"))]
    pub use super::linux::s390::ErrnoIter;
}
#[cfg(all(target_os = "linux", target_arch = "s390x"))]
pub use s390x::Errno;
#[cfg(all(target_os = "linux", target_arch = "s390x", any(doc, feature = "iter")))]
pub use s390x::ErrnoIter;
#[cfg(any(
    doc,
    feature = "sparc",
    all(target_os = "linux", target_arch = "sparc")
))]
pub mod sparc {
    //! Error numbers for arch `sparc`.
    pub use super::linux::sparc::Errno;
    #[cfg(any(doc, feature = "iter"))]
    pub use super::linux::sparc::ErrnoIter;
}
#[cfg(all(target_os = "linux", target_arch = "sparc"))]
pub use sparc::Errno;
#[cfg(all(target_os = "linux", target_arch = "sparc", any(doc, feature = "iter")))]
pub use sparc::ErrnoIter;
#[cfg(any(
    doc,
    feature = "sparc64",
    all(target_os = "linux", target_arch = "sparc64")
))]
pub mod sparc64 {
    //! Error numbers for arch `sparc64`.
    pub use super::linux::sparc::Errno;
    #[cfg(any(doc, feature = "iter"))]
    pub use super::linux::sparc::ErrnoIter;
}
#[cfg(all(target_os = "linux", target_arch = "sparc64"))]
pub use sparc64::Errno;
#[cfg(all(
    target_os = "linux",
    target_arch = "sparc64",
    any(doc, feature = "iter")
))]
pub use sparc64::ErrnoIter;
#[cfg(any(doc, feature = "x86", all(target_os = "linux", target_arch = "x86")))]
pub mod x86 {
    //! Error numbers for arch `x86`.
    pub use super::linux::x86::Errno;
    #[cfg(any(doc, feature = "iter"))]
    pub use super::linux::x86::ErrnoIter;
}
#[cfg(all(target_os = "linux", target_arch = "x86"))]
pub use x86::Errno;
#[cfg(all(target_os = "linux", target_arch = "x86", any(doc, feature = "iter")))]
pub use x86::ErrnoIter;
#[cfg(any(
    doc,
    feature = "x86_64",
    all(target_os = "linux", target_arch = "x86_64")
))]
pub mod x86_64 {
    //! Error numbers for arch `x86_64`.
    pub use super::linux::x86::Errno;
    #[cfg(any(doc, feature = "iter"))]
    pub use super::linux::x86::ErrnoIter;
}
#[cfg(all(target_os = "linux", target_arch = "x86_64"))]
pub use x86_64::Errno;
#[cfg(all(
    target_os = "linux",
    target_arch = "x86_64",
    any(doc, feature = "iter")
))]
pub use x86_64::ErrnoIter;