|
21 | 21 | )] |
22 | 22 | #![cfg_attr( |
23 | 23 | all(target_os = "linux", target_arch = "x86_64"), |
24 | | - doc( |
25 | | - html_root_url = "https://rust-lang.github.io/libc/x86_64-unknown-linux-gnu" |
26 | | - ) |
| 24 | + doc(html_root_url = "https://rust-lang.github.io/libc/x86_64-unknown-linux-gnu") |
27 | 25 | )] |
28 | 26 | #![cfg_attr( |
29 | 27 | all(target_os = "linux", target_arch = "x86"), |
30 | | - doc( |
31 | | - html_root_url = "https://rust-lang.github.io/libc/i686-unknown-linux-gnu" |
32 | | - ) |
| 28 | + doc(html_root_url = "https://rust-lang.github.io/libc/i686-unknown-linux-gnu") |
33 | 29 | )] |
34 | 30 | #![cfg_attr( |
35 | 31 | all(target_os = "linux", target_arch = "arm"), |
36 | | - doc( |
37 | | - html_root_url = "https://rust-lang.github.io/libc/arm-unknown-linux-gnueabihf" |
38 | | - ) |
| 32 | + doc(html_root_url = "https://rust-lang.github.io/libc/arm-unknown-linux-gnueabihf") |
39 | 33 | )] |
40 | 34 | #![cfg_attr( |
41 | 35 | all(target_os = "linux", target_arch = "mips"), |
42 | | - doc( |
43 | | - html_root_url = "https://rust-lang.github.io/libc/mips-unknown-linux-gnu" |
44 | | - ) |
| 36 | + doc(html_root_url = "https://rust-lang.github.io/libc/mips-unknown-linux-gnu") |
45 | 37 | )] |
46 | 38 | #![cfg_attr( |
47 | 39 | all(target_os = "linux", target_arch = "aarch64"), |
48 | | - doc( |
49 | | - html_root_url = "https://rust-lang.github.io/libc/aarch64-unknown-linux-gnu" |
50 | | - ) |
| 40 | + doc(html_root_url = "https://rust-lang.github.io/libc/aarch64-unknown-linux-gnu") |
51 | 41 | )] |
52 | 42 | #![cfg_attr( |
53 | 43 | all(target_os = "linux", target_env = "musl"), |
54 | | - doc( |
55 | | - html_root_url = "https://rust-lang.github.io/libc/x86_64-unknown-linux-musl" |
56 | | - ) |
| 44 | + doc(html_root_url = "https://rust-lang.github.io/libc/x86_64-unknown-linux-musl") |
57 | 45 | )] |
58 | 46 | #![cfg_attr( |
59 | 47 | all(target_os = "macos", target_arch = "x86_64"), |
60 | | - doc( |
61 | | - html_root_url = "https://rust-lang.github.io/libc/x86_64-apple-darwin" |
62 | | - ) |
| 48 | + doc(html_root_url = "https://rust-lang.github.io/libc/x86_64-apple-darwin") |
63 | 49 | )] |
64 | 50 | #![cfg_attr( |
65 | 51 | all(target_os = "macos", target_arch = "x86"), |
66 | 52 | doc(html_root_url = "https://rust-lang.github.io/libc/i686-apple-darwin") |
67 | 53 | )] |
68 | 54 | #![cfg_attr( |
69 | 55 | all(windows, target_arch = "x86_64", target_env = "gnu"), |
70 | | - doc( |
71 | | - html_root_url = "https://rust-lang.github.io/libc/x86_64-pc-windows-gnu" |
72 | | - ) |
| 56 | + doc(html_root_url = "https://rust-lang.github.io/libc/x86_64-pc-windows-gnu") |
73 | 57 | )] |
74 | 58 | #![cfg_attr( |
75 | 59 | all(windows, target_arch = "x86", target_env = "gnu"), |
76 | | - doc( |
77 | | - html_root_url = "https://rust-lang.github.io/libc/i686-pc-windows-gnu" |
78 | | - ) |
| 60 | + doc(html_root_url = "https://rust-lang.github.io/libc/i686-pc-windows-gnu") |
79 | 61 | )] |
80 | 62 | #![cfg_attr( |
81 | 63 | all(windows, target_arch = "x86_64", target_env = "msvc"), |
82 | | - doc( |
83 | | - html_root_url = "https://rust-lang.github.io/libc/x86_64-pc-windows-msvc" |
84 | | - ) |
| 64 | + doc(html_root_url = "https://rust-lang.github.io/libc/x86_64-pc-windows-msvc") |
85 | 65 | )] |
86 | 66 | #![cfg_attr( |
87 | 67 | all(windows, target_arch = "x86", target_env = "msvc"), |
88 | | - doc( |
89 | | - html_root_url = "https://rust-lang.github.io/libc/i686-pc-windows-msvc" |
90 | | - ) |
| 68 | + doc(html_root_url = "https://rust-lang.github.io/libc/i686-pc-windows-msvc") |
91 | 69 | )] |
92 | 70 | #![cfg_attr( |
93 | 71 | target_os = "android", |
94 | | - doc( |
95 | | - html_root_url = "https://rust-lang.github.io/libc/arm-linux-androideabi" |
96 | | - ) |
| 72 | + doc(html_root_url = "https://rust-lang.github.io/libc/arm-linux-androideabi") |
97 | 73 | )] |
98 | 74 | #![cfg_attr( |
99 | 75 | target_os = "freebsd", |
100 | | - doc( |
101 | | - html_root_url = "https://rust-lang.github.io/libc/x86_64-unknown-freebsd" |
102 | | - ) |
| 76 | + doc(html_root_url = "https://rust-lang.github.io/libc/x86_64-unknown-freebsd") |
103 | 77 | )] |
104 | 78 | #![cfg_attr( |
105 | 79 | target_os = "openbsd", |
106 | | - doc( |
107 | | - html_root_url = "https://rust-lang.github.io/libc/x86_64-unknown-openbsd" |
108 | | - ) |
| 80 | + doc(html_root_url = "https://rust-lang.github.io/libc/x86_64-unknown-openbsd") |
109 | 81 | )] |
110 | 82 | #![cfg_attr( |
111 | 83 | target_os = "bitrig", |
112 | | - doc( |
113 | | - html_root_url = "https://rust-lang.github.io/libc/x86_64-unknown-bitrig" |
114 | | - ) |
| 84 | + doc(html_root_url = "https://rust-lang.github.io/libc/x86_64-unknown-bitrig") |
115 | 85 | )] |
116 | 86 | #![cfg_attr( |
117 | 87 | target_os = "netbsd", |
118 | | - doc( |
119 | | - html_root_url = "https://rust-lang.github.io/libc/x86_64-unknown-netbsd" |
120 | | - ) |
| 88 | + doc(html_root_url = "https://rust-lang.github.io/libc/x86_64-unknown-netbsd") |
121 | 89 | )] |
122 | 90 | #![cfg_attr( |
123 | 91 | target_os = "dragonfly", |
124 | | - doc( |
125 | | - html_root_url = "https://rust-lang.github.io/libc/x86_64-unknown-dragonfly" |
126 | | - ) |
| 92 | + doc(html_root_url = "https://rust-lang.github.io/libc/x86_64-unknown-dragonfly") |
127 | 93 | )] |
128 | 94 | #![cfg_attr( |
129 | 95 | target_os = "solaris", |
130 | | - doc( |
131 | | - html_root_url = "https://rust-lang.github.io/libc/x86_64-sun-solaris" |
132 | | - ) |
| 96 | + doc(html_root_url = "https://rust-lang.github.io/libc/x86_64-sun-solaris") |
133 | 97 | )] |
134 | 98 | #![cfg_attr( |
135 | 99 | all(target_os = "emscripten", target_arch = "asmjs"), |
136 | | - doc( |
137 | | - html_root_url = "https://rust-lang.github.io/libc/asmjs-unknown-emscripten" |
138 | | - ) |
| 100 | + doc(html_root_url = "https://rust-lang.github.io/libc/asmjs-unknown-emscripten") |
139 | 101 | )] |
140 | 102 | #![cfg_attr( |
141 | 103 | all(target_os = "emscripten", target_arch = "wasm32"), |
142 | | - doc( |
143 | | - html_root_url = "https://rust-lang.github.io/libc/wasm32-unknown-emscripten" |
144 | | - ) |
| 104 | + doc(html_root_url = "https://rust-lang.github.io/libc/wasm32-unknown-emscripten") |
145 | 105 | )] |
146 | 106 | #![cfg_attr( |
147 | 107 | all(target_os = "linux", target_arch = "sparc64"), |
148 | | - doc( |
149 | | - html_root_url = "https://rust-lang.github.io/libc/sparc64-unknown-linux-gnu" |
150 | | - ) |
| 108 | + doc(html_root_url = "https://rust-lang.github.io/libc/sparc64-unknown-linux-gnu") |
151 | 109 | )] |
152 | 110 | // Attributes needed when building as part of the standard library |
153 | 111 | #![cfg_attr(feature = "rustc-dep-of-std", feature(cfg_target_vendor))] |
|
0 commit comments