summaryrefslogtreecommitdiff
path: root/sysdeps/mach/hurd/getsockname.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/mach/hurd/getsockname.c')
-rw-r--r--sysdeps/mach/hurd/getsockname.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/sysdeps/mach/hurd/getsockname.c b/sysdeps/mach/hurd/getsockname.c
index 7c81ed52fd..dd0dddaed9 100644
--- a/sysdeps/mach/hurd/getsockname.c
+++ b/sysdeps/mach/hurd/getsockname.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1992, 1994, 1997, 1999 Free Software Foundation, Inc.
+/* Copyright (C) 1992, 1994, 1997, 1999, 2002 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -25,7 +25,7 @@
/* Put the local address of FD into *ADDR and its length in *LEN. */
int
-getsockname (fd, addrarg, len)
+__getsockname (fd, addrarg, len)
int fd;
__SOCKADDR_ARG addrarg;
socklen_t *len;
@@ -59,3 +59,5 @@ getsockname (fd, addrarg, len)
return 0;
}
+
+weak_alias (__getsockname, getsockname)