mirror of
https://github.com/fluencelabs/musl
synced 2025-06-02 17:41:37 +00:00
8 lines
151 B
C
8 lines
151 B
C
#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);
|
|
}
|