From: Mathieu Desnoyers Date: Tue, 16 Apr 2013 17:09:02 +0000 (-0400) Subject: futex: include syscall.h instead of sys/syscall.h X-Git-Tag: v0.8.0~97 X-Git-Url: https://git.lttng.org/?p=urcu.git;a=commitdiff_plain;h=dcd64e8a1530e57571fa2230ebb9dd3fa6c65366 futex: include syscall.h instead of sys/syscall.h Signed-off-by: Mathieu Desnoyers --- diff --git a/urcu/futex.h b/urcu/futex.h index 906d9b7..cdaa430 100644 --- a/urcu/futex.h +++ b/urcu/futex.h @@ -45,7 +45,7 @@ extern "C" { */ #ifdef CONFIG_RCU_HAVE_FUTEX -#include +#include #define futex(...) syscall(__NR_futex, __VA_ARGS__) #define futex_noasync(uaddr, op, val, timeout, uaddr2, val3) \ futex(uaddr, op, val, timeout, uaddr2, val3)