summaryrefslogtreecommitdiffstats
path: root/otherlibs/unix/accept.c
diff options
context:
space:
mode:
Diffstat (limited to 'otherlibs/unix/accept.c')
-rw-r--r--otherlibs/unix/accept.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/otherlibs/unix/accept.c b/otherlibs/unix/accept.c
index 228059d25..8d2c2fd5b 100644
--- a/otherlibs/unix/accept.c
+++ b/otherlibs/unix/accept.c
@@ -21,8 +21,7 @@
#include "socketaddr.h"
-value unix_accept(sock) /* ML */
- value sock;
+value unix_accept(value sock) /* ML */
{
int retcode;
value res;
@@ -44,6 +43,6 @@ value unix_accept(sock) /* ML */
#else
-value unix_accept() { invalid_argument("accept not implemented"); }
+value unix_accept(value sock) { invalid_argument("accept not implemented"); }
#endif