aboutsummaryrefslogtreecommitdiff
path: root/std/stdsocket.sloth
diff options
context:
space:
mode:
authorCody <cody@codyq.dev>2023-07-20 18:13:34 -0500
committerCody <cody@codyq.dev>2023-07-20 18:13:34 -0500
commit1219f5ed8aed0bcb6a416a194fce70f0a290309d (patch)
tree5759c263bc626d288cb69434d1f46e20af49f2de /std/stdsocket.sloth
parent7c53e65cad365ec112d2ec1bd9c3091dbed05720 (diff)
parent52d6bc8533616dd642c96f8b6e72f459e1b4d465 (diff)
downloadsloth-1219f5ed8aed0bcb6a416a194fce70f0a290309d.tar.gz
Merge branch 'master' of github.com:slothlang/slothlang
Diffstat (limited to 'std/stdsocket.sloth')
-rw-r--r--std/stdsocket.sloth5
1 files changed, 0 insertions, 5 deletions
diff --git a/std/stdsocket.sloth b/std/stdsocket.sloth
deleted file mode 100644
index 68576a0..0000000
--- a/std/stdsocket.sloth
+++ /dev/null
@@ -1,5 +0,0 @@
-foreign fn serversock(port: Int, addr: String, backlog: Int) Int;
-foreign fn clientsock(port: Int, addr: String) Int;
-foreign fn closesock(soc: Int, server:Bool);
-foreign fn sendsock(msg: String, soc: Int);
-foreign fn recvsock(soc: Int) String;