summaryrefslogtreecommitdiff
path: root/src/thread/__futex.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/thread/__futex.c')
-rw-r--r--src/thread/__futex.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/thread/__futex.c b/src/thread/__futex.c
deleted file mode 100644
index 96307c08..00000000
--- a/src/thread/__futex.c
+++ /dev/null
@@ -1,7 +0,0 @@
-#include "futex.h"
-#include "syscall.h"
-
-int __futex(volatile int *addr, int op, int val, void *ts)
-{
- return syscall(SYS_futex, addr, op, val, ts);
-}