| Index: fusl/src/thread/__futex.c
|
| diff --git a/fusl/src/thread/__futex.c b/fusl/src/thread/__futex.c
|
| index 96307c0888ed486617e18d1da2c4730f9714baf6..c836586585dec79d9ea6d0c44551a491b6cc55b0 100644
|
| --- a/fusl/src/thread/__futex.c
|
| +++ b/fusl/src/thread/__futex.c
|
| @@ -1,7 +1,6 @@
|
| #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);
|
| +int __futex(volatile int* addr, int op, int val, void* ts) {
|
| + return syscall(SYS_futex, addr, op, val, ts);
|
| }
|
|
|