starnix_syscalls/
lib.rs

1// Copyright 2021 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5mod syscall_arg;
6mod syscall_result;
7
8pub mod decls;
9
10pub use syscall_arg::*;
11pub use syscall_result::*;
12
13// This needs to be available to the macros in this library without clients having to depend on
14// paste themselves.
15#[doc(hidden)]
16pub use paste as __paste;