summaryrefslogtreecommitdiff
path: root/otherlibs/unix/connect.c
diff options
context:
space:
mode:
Diffstat (limited to 'otherlibs/unix/connect.c')
-rw-r--r--otherlibs/unix/connect.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/otherlibs/unix/connect.c b/otherlibs/unix/connect.c
deleted file mode 100644
index 51eee43050..0000000000
--- a/otherlibs/unix/connect.c
+++ /dev/null
@@ -1,21 +0,0 @@
-#include <mlvalues.h>
-#include "unix.h"
-
-#ifdef HAS_SOCKETS
-
-#include "socketaddr.h"
-
-value unix_connect(socket, address) /* ML */
- value socket, address;
-{
- get_sockaddr(address);
- if (connect(Int_val(socket), &sock_addr.s_gen, sock_addr_len) == -1)
- uerror("connect", Nothing);
- return Val_unit;
-}
-
-#else
-
-value unix_connect() { invalid_argument("connect not implemented"); }
-
-#endif