Skip to content
Snippets Groups Projects
Commit 37b4e73a authored by Marcin Mielniczuk's avatar Marcin Mielniczuk
Browse files

include sys/regs.h only on x86 and x86_64

parent 1535ee87
No related branches found
No related tags found
No related merge requests found
......@@ -181,13 +181,15 @@ fn main() {
cfg.header("sys/msg.h");
cfg.header("sys/shm.h");
cfg.header("sys/user.h");
cfg.header("sys/reg.h");
cfg.header("sys/fsuid.h");
cfg.header("shadow.h");
cfg.header("linux/input.h");
if x86_64 {
cfg.header("sys/io.h");
}
if x86 || x86_64 {
cfg.header("sys/reg.h");
}
}
if linux || android {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment