diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2021-03-13 18:12:55 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2021-03-26 13:37:18 -0300 |
commit | dd795c6c243987e9974d2b9457f035dcb9b6e51f (patch) | |
tree | 7141f924fc73b14de7efe36c9b964a4f8a3a93b8 /include | |
parent | 40873cdd38533a00f3d4f67b85fd5c0a07d7952e (diff) | |
download | glibc-dd795c6c243987e9974d2b9457f035dcb9b6e51f.tar glibc-dd795c6c243987e9974d2b9457f035dcb9b6e51f.tar.gz glibc-dd795c6c243987e9974d2b9457f035dcb9b6e51f.tar.bz2 glibc-dd795c6c243987e9974d2b9457f035dcb9b6e51f.zip |
nptl: Remove pread from libpthread
The libc version is identical and built with same flags, it is also
uses as the default version.
Checked on x86_64-linux-gnu.
Diffstat (limited to 'include')
-rw-r--r-- | include/unistd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/unistd.h b/include/unistd.h index cdc31c3c0c..2d3698575c 100644 --- a/include/unistd.h +++ b/include/unistd.h @@ -47,7 +47,7 @@ extern ssize_t __pread64 (int __fd, void *__buf, size_t __nbytes, __off64_t __offset); libc_hidden_proto (__pread64); extern ssize_t __libc_pread64 (int __fd, void *__buf, size_t __nbytes, - __off64_t __offset) attribute_hidden; + __off64_t __offset); extern ssize_t __pwrite (int __fd, const void *__buf, size_t __n, __off_t __offset); libc_hidden_proto (__pwrite) |