mirror of
git://git.musl-libc.org/musl
synced 2025-03-06 20:48:29 +01:00
align aarch64, riscv64, loongarch64 stat structure padding type
this change is purely to document that they are the same in preparation to remove the arch-specific headers for these archs and replace them with a generic version that matches riscv32 and can be shared by these and all future archs.
This commit is contained in:
parent
6f666231bf
commit
ef600888d2
3 changed files with 3 additions and 3 deletions
|
@ -6,7 +6,7 @@ struct stat {
|
||||||
uid_t st_uid;
|
uid_t st_uid;
|
||||||
gid_t st_gid;
|
gid_t st_gid;
|
||||||
dev_t st_rdev;
|
dev_t st_rdev;
|
||||||
unsigned long __pad;
|
unsigned long long __pad;
|
||||||
off_t st_size;
|
off_t st_size;
|
||||||
blksize_t st_blksize;
|
blksize_t st_blksize;
|
||||||
int __pad2;
|
int __pad2;
|
||||||
|
|
|
@ -6,7 +6,7 @@ struct stat {
|
||||||
uid_t st_uid;
|
uid_t st_uid;
|
||||||
gid_t st_gid;
|
gid_t st_gid;
|
||||||
dev_t st_rdev;
|
dev_t st_rdev;
|
||||||
unsigned long __pad;
|
unsigned long long __pad;
|
||||||
off_t st_size;
|
off_t st_size;
|
||||||
blksize_t st_blksize;
|
blksize_t st_blksize;
|
||||||
int __pad2;
|
int __pad2;
|
||||||
|
|
|
@ -6,7 +6,7 @@ struct stat {
|
||||||
uid_t st_uid;
|
uid_t st_uid;
|
||||||
gid_t st_gid;
|
gid_t st_gid;
|
||||||
dev_t st_rdev;
|
dev_t st_rdev;
|
||||||
unsigned long __pad;
|
unsigned long long __pad;
|
||||||
off_t st_size;
|
off_t st_size;
|
||||||
blksize_t st_blksize;
|
blksize_t st_blksize;
|
||||||
int __pad2;
|
int __pad2;
|
||||||
|
|
Loading…
Add table
Reference in a new issue