diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2020-09-11 16:33:57 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-11 16:33:57 -0400 |
| commit | 1eaf0691f97decfdee9d73a72869ad63805d159b (patch) | |
| tree | 58564e4b6df649f051681470ae5ced82f2f85a55 /lib/std/os/bits/linux.zig | |
| parent | 42c32dbc7b6cb474a1aa6dc524acb7451efeb15e (diff) | |
| parent | 1078810cef4b346bdcd0ab0cab27dd997e68d206 (diff) | |
| download | zig-1eaf0691f97decfdee9d73a72869ad63805d159b.tar.gz zig-1eaf0691f97decfdee9d73a72869ad63805d159b.zip | |
Merge pull request #6320 from ifreund/prctl
std: add prctl and securebits definitions for linux/C
Diffstat (limited to 'lib/std/os/bits/linux.zig')
| -rw-r--r-- | lib/std/os/bits/linux.zig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/std/os/bits/linux.zig b/lib/std/os/bits/linux.zig index f393f04abe..df31bc32fd 100644 --- a/lib/std/os/bits/linux.zig +++ b/lib/std/os/bits/linux.zig @@ -25,6 +25,8 @@ pub usingnamespace switch (builtin.arch) { }; pub usingnamespace @import("linux/netlink.zig"); +pub usingnamespace @import("linux/prctl.zig"); +pub usingnamespace @import("linux/securebits.zig"); const is_mips = builtin.arch.isMIPS(); |
