diff options
Diffstat (limited to 'sysdeps/generic/getsockname.c')
-rw-r--r-- | sysdeps/generic/getsockname.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sysdeps/generic/getsockname.c b/sysdeps/generic/getsockname.c index f27fa324af..b698bdbb7a 100644 --- a/sysdeps/generic/getsockname.c +++ b/sysdeps/generic/getsockname.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1995, 1996, 1997 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1995, 1996, 1997, 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 @@ -21,7 +21,7 @@ /* Put the local address of FD into *ADDR and its length in *LEN. */ int -getsockname (fd, addr, len) +__getsockname (fd, addr, len) int fd; __SOCKADDR_ARG addr; socklen_t *len; @@ -30,6 +30,7 @@ getsockname (fd, addr, len) return -1; } +weak_alias (__getsockname, getsockname) stub_warning (getsockname) #include <stub-tag.h> |