diff options
Diffstat (limited to 'otherlibs/unix/connect.c')
-rw-r--r-- | otherlibs/unix/connect.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/otherlibs/unix/connect.c b/otherlibs/unix/connect.c index fbe4a3276e..f74c275b31 100644 --- a/otherlibs/unix/connect.c +++ b/otherlibs/unix/connect.c @@ -20,7 +20,7 @@ #include "socketaddr.h" -value unix_connect(value socket, value address) /* ML */ +CAMLprim value unix_connect(value socket, value address) { int retcode; union sock_addr_union addr; @@ -36,7 +36,7 @@ value unix_connect(value socket, value address) /* ML */ #else -value unix_connect(value socket, value address) +CAMLprim value unix_connect(value socket, value address) { invalid_argument("connect not implemented"); } #endif |