diff options
Diffstat (limited to 'otherlibs/unix/bind.c')
-rw-r--r-- | otherlibs/unix/bind.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/otherlibs/unix/bind.c b/otherlibs/unix/bind.c index aa111d3b7..9dd660d9b 100644 --- a/otherlibs/unix/bind.c +++ b/otherlibs/unix/bind.c @@ -19,7 +19,7 @@ #include "socketaddr.h" -value unix_bind(value socket, value address) /* ML */ +CAMLprim value unix_bind(value socket, value address) { int ret; union sock_addr_union addr; @@ -33,7 +33,7 @@ value unix_bind(value socket, value address) /* ML */ #else -value unix_bind(value socket, value address) +CAMLprim value unix_bind(value socket, value address) { invalid_argument("bind not implemented"); } #endif |