diff options
author | Nick Mathewson <nickm@torproject.org> | 2015-10-15 10:35:45 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2015-10-15 10:35:45 -0400 |
commit | 50148dc45dc0e20abc5b63791ad3da417bf970bf (patch) | |
tree | a7a08eb937447910fe46714d7d11a7bff9061374 /src/common/sandbox.c | |
parent | 7c3f210e709703a3ce3e36107166f67c31f4c8e1 (diff) | |
download | tor-50148dc45dc0e20abc5b63791ad3da417bf970bf.tar.gz tor-50148dc45dc0e20abc5b63791ad3da417bf970bf.zip |
Fix compilation of sandbox.[ch] under musl-libc
Patch from jamestk; fix on 0.2.5.1-alpha. Fixes 17347.
Diffstat (limited to 'src/common/sandbox.c')
-rw-r--r-- | src/common/sandbox.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/sandbox.c b/src/common/sandbox.c index 161eab7aad..b995762738 100644 --- a/src/common/sandbox.c +++ b/src/common/sandbox.c @@ -48,7 +48,7 @@ #include <sys/epoll.h> #include <sys/prctl.h> #include <linux/futex.h> -#include <bits/signum.h> +#include <sys/file.h> #include <stdarg.h> #include <seccomp.h> |