diff options
Diffstat (limited to 'sysdeps/mach/hurd/fchownat.c')
-rw-r--r-- | sysdeps/mach/hurd/fchownat.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/mach/hurd/fchownat.c b/sysdeps/mach/hurd/fchownat.c index a34632c63e..580f38f057 100644 --- a/sysdeps/mach/hurd/fchownat.c +++ b/sysdeps/mach/hurd/fchownat.c @@ -26,7 +26,7 @@ /* Change the owner and group of FILE. */ int -fchownat (int fd, const char *file, uid_t owner, gid_t group, int flag) +__fchownat (int fd, const char *file, uid_t owner, gid_t group, int flag) { error_t err; file_t port = __file_name_lookup_at (fd, flag, file, 0, 0); @@ -38,3 +38,4 @@ fchownat (int fd, const char *file, uid_t owner, gid_t group, int flag) return __hurd_fail (err); return 0; } +weak_alias (__fchownat, fchownat) |