mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
hurd: fix fcntl visibility
* sysdeps/posix/dup.c (__dup): Call __fcntl instead of fcntl.
This commit is contained in:
@ -1,6 +1,7 @@
|
|||||||
2016-09-18 Samuel Thibault <samuel.thibault@ens-lyon.org>
|
2016-09-18 Samuel Thibault <samuel.thibault@ens-lyon.org>
|
||||||
|
|
||||||
* intl/dcigettext.c (PATH_MAX): Call __pathconf instead of pathconf.
|
* intl/dcigettext.c (PATH_MAX): Call __pathconf instead of pathconf.
|
||||||
|
* sysdeps/posix/dup.c (__dup): Call __fcntl instead of fcntl.
|
||||||
|
|
||||||
2016-09-15 Adhemerval Zanella <adhemerval.zanella@linaro.org>
|
2016-09-15 Adhemerval Zanella <adhemerval.zanella@linaro.org>
|
||||||
|
|
||||||
|
@ -24,7 +24,7 @@
|
|||||||
int
|
int
|
||||||
__dup (int fd)
|
__dup (int fd)
|
||||||
{
|
{
|
||||||
return fcntl (fd, F_DUPFD, 0);
|
return __fcntl (fd, F_DUPFD, 0);
|
||||||
}
|
}
|
||||||
libc_hidden_def (__dup)
|
libc_hidden_def (__dup)
|
||||||
weak_alias (__dup, dup)
|
weak_alias (__dup, dup)
|
||||||
|
Reference in New Issue
Block a user