blob: 94d284db93c2f8834c15eacb2a074579d3d5d321 [file] [log] [blame]
// Copyright 2019 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.
pub mod base;
#[cfg(feature = "chromeos-module")]
pub mod chromeos;
pub mod linux;
pub mod net;
mod read_dir;
pub mod scoped_path;
pub mod secure_blob;
pub mod syslog;
pub mod vsock;
pub use read_dir::*;
#[macro_export]
macro_rules! syscall {
($e:expr) => {{
let res = $e;
if res < 0 {
Err(::std::io::Error::last_os_error())
} else {
Ok(res)
}
}};
}