Make stub fchdir.c define __fchdir.

This commit is contained in:
Roland McGrath 2013-04-29 14:30:37 -07:00
parent f2da779309
commit a6a242fe7c
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2013-04-29 Roland McGrath <roland@hack.frob.com>
* io/fchdir.c (__fchdir): Renamed from fchdir.
(fchdir): Define as weak alias.
2013-04-29 Joseph Myers <joseph@codesourcery.com>
* math/libm-test.inc (ERRNO_UNCHANGED): New macro.

View File

@ -21,11 +21,11 @@
/* Change the current directory to FD. */
int
fchdir (fd)
int fd;
__fchdir (int fd)
{
__set_errno (ENOSYS);
return -1;
}
weak_alias (__fchdir, fchdir)
stub_warning (fchdir)