diff options
Diffstat (limited to 'sysdeps/stub/bind.c')
-rw-r--r-- | sysdeps/stub/bind.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/stub/bind.c b/sysdeps/stub/bind.c index 9a744ef209..38ad46aa87 100644 --- a/sysdeps/stub/bind.c +++ b/sysdeps/stub/bind.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1995 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1995, 1996 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 @@ -23,7 +23,7 @@ Cambridge, MA 02139, USA. */ /* Give the socket FD the local address ADDR (which is LEN bytes long). */ int DEFUN(bind, (fd, addr, len), - int fd AND struct sockaddr *addr AND size_t len) + int fd AND const struct sockaddr *addr AND size_t len) { errno = ENOSYS; return -1; |