diff options
Diffstat (limited to 'otherlibs/unix/getsockname.c')
-rw-r--r-- | otherlibs/unix/getsockname.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/otherlibs/unix/getsockname.c b/otherlibs/unix/getsockname.c index 4831618a8..0275a1240 100644 --- a/otherlibs/unix/getsockname.c +++ b/otherlibs/unix/getsockname.c @@ -18,8 +18,7 @@ #include "socketaddr.h" -value unix_getsockname(sock) /* ML */ - value sock; +value unix_getsockname(value sock) /* ML */ { int retcode; @@ -31,6 +30,7 @@ value unix_getsockname(sock) /* ML */ #else -value unix_getsockname() { invalid_argument("getsockname not implemented"); } +value unix_getsockname(value sock) +{ invalid_argument("getsockname not implemented"); } #endif |