]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - socket/getsockopt.c
Convert 703 function definitions to prototype style.
[thirdparty/glibc.git] / socket / getsockopt.c
index 73fb15e3413c775def9c492f1ccc89688f35f410..7b0f3b38badcfdd2770482a56146f73095c98398 100644 (file)
    into OPTVAL (which is *OPTLEN bytes long), and set *OPTLEN to the value's
    actual length.  Returns 0 on success, -1 for errors.  */
 int
-getsockopt (fd, level, optname, optval, optlen)
-     int fd;
-     int level;
-     int optname;
-     void *optval;
-     socklen_t *optlen;
+getsockopt (int fd, int level, int optname, void *optval, socklen_t *optlen)
 {
   __set_errno (ENOSYS);
   return -1;