light_hasher/syscalls/
mod.rs

1//! This module is a partial copy from
2//! [solana-program](https://github.com/solana-labs/solana/blob/master/sdk/program/src/syscalls/definitions.rs),
3//! which is licensed under Apache License 2.0.
4//!
5//! The purpose of the module is to provide definition of Poseidon syscall
6//! without upgrading solana-program and Anchor just yet.
7
8#[cfg(target_os = "solana")]
9mod definitions;
10
11#[cfg(target_os = "solana")]
12pub use definitions::*;