summaryrefslogtreecommitdiff
path: root/src/common/sandbox.h
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2015-10-15 10:35:45 -0400
committerNick Mathewson <nickm@torproject.org>2015-10-15 10:35:45 -0400
commit50148dc45dc0e20abc5b63791ad3da417bf970bf (patch)
treea7a08eb937447910fe46714d7d11a7bff9061374 /src/common/sandbox.h
parent7c3f210e709703a3ce3e36107166f67c31f4c8e1 (diff)
downloadtor-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.h')
-rw-r--r--src/common/sandbox.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/common/sandbox.h b/src/common/sandbox.h
index 36d25d6516..21d517fe51 100644
--- a/src/common/sandbox.h
+++ b/src/common/sandbox.h
@@ -42,6 +42,9 @@ typedef struct sandbox_cfg_elem sandbox_cfg_t;
#ifndef __USE_GNU
#define __USE_GNU
#endif
+#ifndef _GNU_SOURCE
+#define _GNU_SOURCE
+#endif
#include <sys/ucontext.h>
#include <seccomp.h>
#include <netdb.h>