summaryrefslogtreecommitdiff
path: root/exec/trace.c
diff options
context:
space:
mode:
authorPo Lu <luangruo@yahoo.com>2023-05-05 10:57:26 +0800
committerPo Lu <luangruo@yahoo.com>2023-05-05 10:57:26 +0800
commitd5414f1797467b00ca4f75faf39c774b150fc509 (patch)
tree5234e24c58ff887cba6870087fc78be359b445df /exec/trace.c
parentdaccdf7e6d4bc42ffe8ffbc9db137bd44b073343 (diff)
downloademacs-d5414f1797467b00ca4f75faf39c774b150fc509.tar.gz
Update Android port
* exec/trace.c (SYS_SECCOMP): Define when not present.
Diffstat (limited to 'exec/trace.c')
-rw-r--r--exec/trace.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/exec/trace.c b/exec/trace.c
index f9dd4d419f4..b765b5cffa4 100644
--- a/exec/trace.c
+++ b/exec/trace.c
@@ -46,6 +46,10 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */
#include <sys/uio.h> /* for process_vm_readv */
#endif /* HAVE_SYS_UIO_H */
+#ifndef SYS_SECCOMP
+#define SYS_SECCOMP 1
+#endif /* SYS_SECCOMP */
+
/* Program tracing functions.