Commit Diff
- Commit:
49541807dc224979ed6ac6cb35636f35f41d1f71
- From:
- Omar Polo <op@omarpolo.com>
- Date:
- Message:
- don't include linux/prctl.h On some libc implementations (at least musl) linux/prctl.h conflicts with sys/prctl.h as they both define the same structs. Fixes the build on alpine linux; reported by omni on IRC, thanks! ok thomas
- Actions:
- Patch | Tree
--- compat/landlock.c +++ compat/landlock.c @@ -15,7 +15,6 @@ */ #include <linux/landlock.h> -#include <linux/prctl.h> #include <sys/prctl.h> #include <sys/syscall.h>