diff options
author | Philipp Stephani <phst@google.com> | 2021-04-12 09:20:51 +0200 |
---|---|---|
committer | Philipp Stephani <phst@google.com> | 2021-04-12 09:20:51 +0200 |
commit | 104c5e3d57705cd4bd291b61d7f165def602ab5c (patch) | |
tree | d4f3ba3f2da31660e667455ccd60b1a8f8201195 | |
parent | 17d20bb3cbb233ed0d94c3f1f9f3db768f526223 (diff) | |
download | emacs-104c5e3d57705cd4bd291b61d7f165def602ab5c.tar.gz |
* lib-src/seccomp-filter.c: Add missing headers.
-rw-r--r-- | lib-src/seccomp-filter.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib-src/seccomp-filter.c b/lib-src/seccomp-filter.c index ed362bc18d9..fc3c3a0c074 100644 --- a/lib-src/seccomp-filter.c +++ b/lib-src/seccomp-filter.c @@ -51,6 +51,8 @@ variants of those files that can be used to sandbox Emacs before #include <sys/types.h> #include <sys/stat.h> #include <linux/futex.h> +#include <linux/filter.h> +#include <linux/seccomp.h> #include <fcntl.h> #include <sched.h> #include <seccomp.h> |