summary refs log tree commit diff
path: root/syscall_defines/src/lib.rs
blob: cf016ab35fb81a3cf23072807b9a1be70d5fc8d6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright 2017 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#[cfg(target_arch = "x86_64")]
#[path = "linux-x86_64/mod.rs"]
pub mod linux;

#[cfg(target_arch = "x86")]
#[path = "linux-x86/mod.rs"]
pub mod linux;

#[cfg(target_arch = "aarch64")]
#[path = "linux-aarch64/mod.rs"]
pub mod linux;

#[cfg(target_arch = "arm")]
#[path = "linux-arm/mod.rs"]
pub mod linux;