summaryrefslogtreecommitdiffstats
path: root/otherlibs/unix/listen.c
diff options
context:
space:
mode:
Diffstat (limited to 'otherlibs/unix/listen.c')
-rw-r--r--otherlibs/unix/listen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/otherlibs/unix/listen.c b/otherlibs/unix/listen.c
index 39c846995..15bccc0e8 100644
--- a/otherlibs/unix/listen.c
+++ b/otherlibs/unix/listen.c
@@ -19,7 +19,7 @@
#include <sys/socket.h>
-value unix_listen(value sock, value backlog)
+value unix_listen(value sock, value backlog) /* ML */
{
if (listen(Int_val(sock), Int_val(backlog)) == -1) uerror("listen", Nothing);
return Val_unit;