aboutsummaryrefslogtreecommitdiff
path: root/lang/modula-3-socks/files/socket.c
diff options
context:
space:
mode:
Diffstat (limited to 'lang/modula-3-socks/files/socket.c')
-rw-r--r--lang/modula-3-socks/files/socket.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/lang/modula-3-socks/files/socket.c b/lang/modula-3-socks/files/socket.c
deleted file mode 100644
index 64dcae3737d1..000000000000
--- a/lang/modula-3-socks/files/socket.c
+++ /dev/null
@@ -1,14 +0,0 @@
-#include "wrap.h"
-#include <sys/types.h>
-#include <sys/socket.h>
-
-int
-m3_socket(int domain, int type, int protocol)
-{
- int result;
-
- ENTER_CRITICAL;
- result = socket(domain, type, protocol);
- EXIT_CRITICAL;
- return result;
-}