Add missing solana-program docs (#28770)

This commit is contained in:
Brian Anderson 2022-11-09 14:33:19 -06:00 committed by GitHub
parent d1ba42180d
commit 7f8d37c011
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,5 @@
//! Integers that serialize to variable size.
#![allow(clippy::integer_arithmetic)]
use {
serde::{

View File

@ -1,3 +1,7 @@
//! Declarations of Solana program syscalls.
//!
//! This module is mostly empty when not compiling for BPF targets.
#[cfg(target_os = "solana")]
mod definitions;