diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2020-07-17 09:18:39 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2020-10-09 17:02:06 -0300 |
commit | d8927238307b9df32319a34755ac36f6e92a0b7d (patch) | |
tree | 8b204b5b869bd345d29e8c7abcfe6922a4247213 /sysdeps/unix/sysv/linux/Makefile | |
parent | 589260cef8c2090d67d3deaa0a9ffa61c96de951 (diff) | |
download | glibc-d8927238307b9df32319a34755ac36f6e92a0b7d.tar glibc-d8927238307b9df32319a34755ac36f6e92a0b7d.tar.gz glibc-d8927238307b9df32319a34755ac36f6e92a0b7d.tar.bz2 glibc-d8927238307b9df32319a34755ac36f6e92a0b7d.zip |
linux: Move the struct stat{64} to struct_stat.h
The common definitions are moved to a Linux generic stat.h while the
struct stat{64} definition are moved to a arch-specific struct_stat.h
header.
Checked with a build for all affected ABIs. I also checked on x86_64,
i686, powerpc, powerpc64le, sparcv9, sparc64, s390, and s390x.
Reviewed-by: Lukasz Majewski <lukma@denx.de>
Diffstat (limited to 'sysdeps/unix/sysv/linux/Makefile')
-rw-r--r-- | sysdeps/unix/sysv/linux/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/Makefile b/sysdeps/unix/sysv/linux/Makefile index de9e86553b..e6eb92f381 100644 --- a/sysdeps/unix/sysv/linux/Makefile +++ b/sysdeps/unix/sysv/linux/Makefile @@ -96,7 +96,8 @@ sysdep_headers += sys/mount.h sys/acct.h \ bits/types/struct_semid_ds.h \ bits/types/struct_msqid_ds.h \ bits/types/struct_shmid_ds.h \ - bits/ipc-perm.h + bits/ipc-perm.h \ + bits/struct_stat.h tests += tst-clone tst-clone2 tst-clone3 tst-fanotify tst-personality \ tst-quota tst-sync_file_range tst-sysconf-iov_max tst-ttyname \ |