solana_program/
bpf_loader_deprecated.rs

1//! The original and now deprecated Solana BPF loader.
2//!
3//! The BPF loader is responsible for loading, finalizing, and executing BPF
4//! programs.
5//!
6//! This loader is deprecated, and it is strongly encouraged to build for and
7//! deploy to the latest BPF loader.  For more information see `bpf_loader.rs`
8//!
9//! The program format may change between loaders, and it is crucial to build
10//! your program against the proper entrypoint semantics.  All programs being
11//! deployed to this BPF loader must build against the deprecated entrypoint
12//! version located in `entrypoint_deprecated.rs`.
13
14crate::declare_id!("BPFLoader1111111111111111111111111111111111");