Lines 131-136
struct stat64
Link Here
|
131 |
|
131 |
|
132 |
struct stat |
132 |
struct stat |
133 |
{ |
133 |
{ |
|
|
134 |
# ifdef __USE_TIME_BITS64 |
135 |
# include <bits/struct_stat_time64_helper.h> |
136 |
# else |
134 |
__dev_t st_dev; |
137 |
__dev_t st_dev; |
135 |
int st_pad1[3]; /* Reserved for st_dev expansion */ |
138 |
int st_pad1[3]; /* Reserved for st_dev expansion */ |
136 |
# ifndef __USE_FILE_OFFSET64 |
139 |
# ifndef __USE_FILE_OFFSET64 |
Lines 180-190
struct stat
Link Here
|
180 |
__blkcnt64_t st_blocks; |
183 |
__blkcnt64_t st_blocks; |
181 |
# endif |
184 |
# endif |
182 |
int st_pad5[14]; |
185 |
int st_pad5[14]; |
|
|
186 |
# endif /* __USE_TIME_BITS64 */ |
183 |
}; |
187 |
}; |
184 |
|
188 |
|
185 |
#ifdef __USE_LARGEFILE64 |
189 |
#ifdef __USE_LARGEFILE64 |
186 |
struct stat64 |
190 |
struct stat64 |
187 |
{ |
191 |
{ |
|
|
192 |
# ifdef __USE_TIME_BITS64 |
193 |
# include <bits/struct_stat_time64_helper.h> |
194 |
# else |
188 |
__dev_t st_dev; |
195 |
__dev_t st_dev; |
189 |
unsigned int st_pad1[3]; /* Reserved for st_dev expansion */ |
196 |
unsigned int st_pad1[3]; /* Reserved for st_dev expansion */ |
190 |
__ino64_t st_ino; |
197 |
__ino64_t st_ino; |
Lines 217-222
struct stat64
Link Here
|
217 |
unsigned int st_pad3; |
224 |
unsigned int st_pad3; |
218 |
__blkcnt64_t st_blocks; |
225 |
__blkcnt64_t st_blocks; |
219 |
int st_pad4[14]; |
226 |
int st_pad4[14]; |
|
|
227 |
# endif /* __USE_TIME_BITS64 */ |
220 |
}; |
228 |
}; |
221 |
#endif |
229 |
#endif |
222 |
|
230 |
|