1
- #[ inline( always ) ]
1
+ #[ inline]
2
2
pub unsafe extern "C" fn creat64 ( path : * const :: c_char , mode : :: mode_t ) -> :: c_int {
3
3
:: creat ( path, mode)
4
4
}
5
5
6
- #[ inline( always ) ]
6
+ #[ inline]
7
7
pub unsafe extern "C" fn fallocate64 (
8
8
fd : :: c_int ,
9
9
mode : :: c_int ,
@@ -13,17 +13,17 @@ pub unsafe extern "C" fn fallocate64(
13
13
:: fallocate ( fd, mode, offset, len)
14
14
}
15
15
16
- #[ inline( always ) ]
16
+ #[ inline]
17
17
pub unsafe extern "C" fn fgetpos64 ( stream : * mut :: FILE , pos : * mut :: fpos64_t ) -> :: c_int {
18
18
:: fgetpos ( stream, pos. cast ( ) )
19
19
}
20
20
21
- #[ inline( always ) ]
21
+ #[ inline]
22
22
pub unsafe extern "C" fn fopen64 ( pathname : * const :: c_char , mode : * const :: c_char ) -> * mut :: FILE {
23
23
:: fopen ( pathname, mode)
24
24
}
25
25
26
- #[ inline( always ) ]
26
+ #[ inline]
27
27
pub unsafe extern "C" fn freopen64 (
28
28
pathname : * const :: c_char ,
29
29
mode : * const :: c_char ,
@@ -32,7 +32,7 @@ pub unsafe extern "C" fn freopen64(
32
32
:: freopen ( pathname, mode, stream)
33
33
}
34
34
35
- #[ inline( always ) ]
35
+ #[ inline]
36
36
pub unsafe extern "C" fn fseeko64 (
37
37
stream : * mut :: FILE ,
38
38
offset : :: off64_t ,
@@ -41,17 +41,17 @@ pub unsafe extern "C" fn fseeko64(
41
41
:: fseeko ( stream, offset, whence)
42
42
}
43
43
44
- #[ inline( always ) ]
44
+ #[ inline]
45
45
pub unsafe extern "C" fn fsetpos64 ( stream : * mut :: FILE , pos : * const :: fpos64_t ) -> :: c_int {
46
46
:: fsetpos ( stream, pos. cast ( ) )
47
47
}
48
48
49
- #[ inline( always ) ]
49
+ #[ inline]
50
50
pub unsafe extern "C" fn fstat64 ( fildes : :: c_int , buf : * mut :: stat64 ) -> :: c_int {
51
51
:: fstat ( fildes, buf. cast ( ) )
52
52
}
53
53
54
- #[ inline( always ) ]
54
+ #[ inline]
55
55
pub unsafe extern "C" fn fstatat64 (
56
56
fd : :: c_int ,
57
57
path : * const :: c_char ,
@@ -61,42 +61,42 @@ pub unsafe extern "C" fn fstatat64(
61
61
:: fstatat ( fd, path, buf. cast ( ) , flag)
62
62
}
63
63
64
- #[ inline( always ) ]
64
+ #[ inline]
65
65
pub unsafe extern "C" fn fstatfs64 ( fd : :: c_int , buf : * mut :: statfs64 ) -> :: c_int {
66
66
:: fstatfs ( fd, buf. cast ( ) )
67
67
}
68
68
69
- #[ inline( always ) ]
69
+ #[ inline]
70
70
pub unsafe extern "C" fn fstatvfs64 ( fd : :: c_int , buf : * mut :: statvfs64 ) -> :: c_int {
71
71
:: fstatvfs ( fd, buf. cast ( ) )
72
72
}
73
73
74
- #[ inline( always ) ]
74
+ #[ inline]
75
75
pub unsafe extern "C" fn ftello64 ( stream : * mut :: FILE ) -> :: off64_t {
76
76
:: ftello ( stream)
77
77
}
78
78
79
- #[ inline( always ) ]
79
+ #[ inline]
80
80
pub unsafe extern "C" fn ftruncate64 ( fd : :: c_int , length : :: off64_t ) -> :: c_int {
81
81
:: ftruncate ( fd, length)
82
82
}
83
83
84
- #[ inline( always ) ]
84
+ #[ inline]
85
85
pub unsafe extern "C" fn getrlimit64 ( resource : :: c_int , rlim : * mut :: rlimit64 ) -> :: c_int {
86
86
:: getrlimit ( resource, rlim. cast ( ) )
87
87
}
88
88
89
- #[ inline( always ) ]
89
+ #[ inline]
90
90
pub unsafe extern "C" fn lseek64 ( fd : :: c_int , offset : :: off64_t , whence : :: c_int ) -> :: off64_t {
91
91
:: lseek ( fd, offset, whence)
92
92
}
93
93
94
- #[ inline( always ) ]
94
+ #[ inline]
95
95
pub unsafe extern "C" fn lstat64 ( path : * const :: c_char , buf : * mut :: stat64 ) -> :: c_int {
96
96
:: lstat ( path, buf. cast ( ) )
97
97
}
98
98
99
- #[ inline( always ) ]
99
+ #[ inline]
100
100
pub unsafe extern "C" fn mmap64 (
101
101
addr : * mut :: c_void ,
102
102
length : :: size_t ,
@@ -108,7 +108,7 @@ pub unsafe extern "C" fn mmap64(
108
108
:: mmap ( addr, length, prot, flags, fd, offset)
109
109
}
110
110
111
- #[ inline( always ) ]
111
+ #[ inline]
112
112
pub unsafe extern "C" fn open64 (
113
113
pathname : * const :: c_char ,
114
114
flags : :: c_int ,
@@ -117,7 +117,7 @@ pub unsafe extern "C" fn open64(
117
117
:: open ( pathname, flags | :: O_LARGEFILE , mode)
118
118
}
119
119
120
- #[ inline( always ) ]
120
+ #[ inline]
121
121
pub unsafe extern "C" fn openat64 (
122
122
dirfd : :: c_int ,
123
123
pathname : * const :: c_char ,
@@ -127,7 +127,7 @@ pub unsafe extern "C" fn openat64(
127
127
:: openat ( dirfd, pathname, flags | :: O_LARGEFILE , mode)
128
128
}
129
129
130
- #[ inline( always ) ]
130
+ #[ inline]
131
131
pub unsafe extern "C" fn posix_fadvise64 (
132
132
fd : :: c_int ,
133
133
offset : :: off64_t ,
@@ -137,7 +137,7 @@ pub unsafe extern "C" fn posix_fadvise64(
137
137
:: posix_fadvise ( fd, offset, len, advice)
138
138
}
139
139
140
- #[ inline( always ) ]
140
+ #[ inline]
141
141
pub unsafe extern "C" fn posix_fallocate64 (
142
142
fd : :: c_int ,
143
143
offset : :: off64_t ,
@@ -146,7 +146,7 @@ pub unsafe extern "C" fn posix_fallocate64(
146
146
:: posix_fallocate ( fd, offset, len)
147
147
}
148
148
149
- #[ inline( always ) ]
149
+ #[ inline]
150
150
pub unsafe extern "C" fn pread64 (
151
151
fd : :: c_int ,
152
152
buf : * mut :: c_void ,
@@ -156,7 +156,7 @@ pub unsafe extern "C" fn pread64(
156
156
:: pread ( fd, buf, count, offset)
157
157
}
158
158
159
- #[ inline( always ) ]
159
+ #[ inline]
160
160
pub unsafe extern "C" fn preadv64 (
161
161
fd : :: c_int ,
162
162
iov : * const :: iovec ,
@@ -166,7 +166,7 @@ pub unsafe extern "C" fn preadv64(
166
166
:: preadv ( fd, iov, iovcnt, offset)
167
167
}
168
168
169
- #[ inline( always ) ]
169
+ #[ inline]
170
170
pub unsafe extern "C" fn prlimit64 (
171
171
pid : :: pid_t ,
172
172
resource : :: c_int ,
@@ -176,7 +176,7 @@ pub unsafe extern "C" fn prlimit64(
176
176
:: prlimit ( pid, resource, new_limit. cast ( ) , old_limit. cast ( ) )
177
177
}
178
178
179
- #[ inline( always ) ]
179
+ #[ inline]
180
180
pub unsafe extern "C" fn pwrite64 (
181
181
fd : :: c_int ,
182
182
buf : * const :: c_void ,
@@ -186,7 +186,7 @@ pub unsafe extern "C" fn pwrite64(
186
186
:: pwrite ( fd, buf, count, offset)
187
187
}
188
188
189
- #[ inline( always ) ]
189
+ #[ inline]
190
190
pub unsafe extern "C" fn pwritev64 (
191
191
fd : :: c_int ,
192
192
iov : * const :: iovec ,
@@ -196,12 +196,12 @@ pub unsafe extern "C" fn pwritev64(
196
196
:: pwritev ( fd, iov, iovcnt, offset)
197
197
}
198
198
199
- #[ inline( always ) ]
199
+ #[ inline]
200
200
pub unsafe extern "C" fn readdir64 ( dirp : * mut :: DIR ) -> * mut :: dirent64 {
201
201
:: readdir ( dirp) . cast ( )
202
202
}
203
203
204
- #[ inline( always ) ]
204
+ #[ inline]
205
205
pub unsafe extern "C" fn readdir64_r (
206
206
dirp : * mut :: DIR ,
207
207
entry : * mut :: dirent64 ,
@@ -210,7 +210,7 @@ pub unsafe extern "C" fn readdir64_r(
210
210
:: readdir_r ( dirp, entry. cast ( ) , result. cast ( ) )
211
211
}
212
212
213
- #[ inline( always ) ]
213
+ #[ inline]
214
214
pub unsafe extern "C" fn sendfile64 (
215
215
out_fd : :: c_int ,
216
216
in_fd : :: c_int ,
@@ -220,32 +220,32 @@ pub unsafe extern "C" fn sendfile64(
220
220
:: sendfile ( out_fd, in_fd, offset, count)
221
221
}
222
222
223
- #[ inline( always ) ]
223
+ #[ inline]
224
224
pub unsafe extern "C" fn setrlimit64 ( resource : :: c_int , rlim : * const :: rlimit64 ) -> :: c_int {
225
225
:: setrlimit ( resource, rlim. cast ( ) )
226
226
}
227
227
228
- #[ inline( always ) ]
228
+ #[ inline]
229
229
pub unsafe extern "C" fn stat64 ( pathname : * const :: c_char , statbuf : * mut :: stat64 ) -> :: c_int {
230
230
:: stat ( pathname, statbuf. cast ( ) )
231
231
}
232
232
233
- #[ inline( always ) ]
233
+ #[ inline]
234
234
pub unsafe extern "C" fn statfs64 ( pathname : * const :: c_char , buf : * mut :: statfs64 ) -> :: c_int {
235
235
:: statfs ( pathname, buf. cast ( ) )
236
236
}
237
237
238
- #[ inline( always ) ]
238
+ #[ inline]
239
239
pub unsafe extern "C" fn statvfs64 ( path : * const :: c_char , buf : * mut :: statvfs64 ) -> :: c_int {
240
240
:: statvfs ( path, buf. cast ( ) )
241
241
}
242
242
243
- #[ inline( always ) ]
243
+ #[ inline]
244
244
pub unsafe extern "C" fn tmpfile64 ( ) -> * mut :: FILE {
245
245
:: tmpfile ( )
246
246
}
247
247
248
- #[ inline( always ) ]
248
+ #[ inline]
249
249
pub unsafe extern "C" fn truncate64 ( path : * const :: c_char , length : :: off64_t ) -> :: c_int {
250
250
:: truncate ( path, length)
251
251
}
0 commit comments