diff options
author | Florian Weimer <fweimer@redhat.com> | 2021-06-25 10:30:36 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2021-06-25 12:19:15 +0200 |
commit | 496919b12f2dc0733e215cc2f08266474c87719e (patch) | |
tree | be4b13d188f43171c767339865a5e56b1046257a /sysdeps/unix/sysv/linux/wordsize-64 | |
parent | 32e750516c653bc3005aaef87124a587a7bef196 (diff) | |
download | glibc-496919b12f2dc0733e215cc2f08266474c87719e.tar glibc-496919b12f2dc0733e215cc2f08266474c87719e.tar.gz glibc-496919b12f2dc0733e215cc2f08266474c87719e.tar.bz2 glibc-496919b12f2dc0733e215cc2f08266474c87719e.zip |
Linux: Move aio_write, aio_write64 into libc
Both symbols have to be moved at the same time because they
are intertwined for __WORDSIZE == 64. The treatment of this case
is also changed to match more closely how the other files suppress
the declaration of the *64 identifier.
The symbols were moved using scripts/move-symbol-to-libc.py.
Reviewed-by: Adhemerva Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'sysdeps/unix/sysv/linux/wordsize-64')
-rw-r--r-- | sysdeps/unix/sysv/linux/wordsize-64/aio_write.c | 7 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/wordsize-64/aio_write64.c | 1 |
2 files changed, 0 insertions, 8 deletions
diff --git a/sysdeps/unix/sysv/linux/wordsize-64/aio_write.c b/sysdeps/unix/sysv/linux/wordsize-64/aio_write.c deleted file mode 100644 index 60d242f88f..0000000000 --- a/sysdeps/unix/sysv/linux/wordsize-64/aio_write.c +++ /dev/null @@ -1,7 +0,0 @@ -#define aio_write64 __renamed_aio_write64 - -#include <rt/aio_write.c> - -#undef aio_write64 - -weak_alias (aio_write, aio_write64) diff --git a/sysdeps/unix/sysv/linux/wordsize-64/aio_write64.c b/sysdeps/unix/sysv/linux/wordsize-64/aio_write64.c deleted file mode 100644 index ced07fa273..0000000000 --- a/sysdeps/unix/sysv/linux/wordsize-64/aio_write64.c +++ /dev/null @@ -1 +0,0 @@ -/* Defined in aio_write.c. */ |