]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - socket/getsockname.c
Update copyright dates with scripts/update-copyrights.
[thirdparty/glibc.git] / socket / getsockname.c
index 01d0b062b6f103788d84ac40f322a8eff24b35f9..ed7b2ff8e78ff2d0378b0a9d217b369ff936424e 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2014 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2016 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
 
 /* Put the local address of FD into *ADDR and its length in *LEN.  */
 int
-__getsockname (fd, addr, len)
-     int fd;
-     __SOCKADDR_ARG addr;
-     socklen_t *len;
+__getsockname (int fd, __SOCKADDR_ARG addr, socklen_t *len)
 {
   __set_errno (ENOSYS);
   return -1;