summaryrefslogtreecommitdiff
path: root/io
diff options
context:
space:
mode:
authorRoland McGrath <roland@hack.frob.com>2013-04-29 14:30:37 -0700
committerRoland McGrath <roland@hack.frob.com>2013-04-29 14:30:37 -0700
commita6a242fe7cc0d7fcac1c9741d8be2ca8c2a5c744 (patch)
tree2c2210d71a4b52c465087437d9d71121a3823aaf /io
parentf2da7793096c58b30ca57380da4c1343cabc4044 (diff)
Make stub fchdir.c define __fchdir.
Diffstat (limited to 'io')
-rw-r--r--io/fchdir.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/io/fchdir.c b/io/fchdir.c
index c79b4f2397..843f10109c 100644
--- a/io/fchdir.c
+++ b/io/fchdir.c
@@ -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)