Skip entrypoint in programs (#11176)
This commit is contained in:
		@@ -11,6 +11,8 @@ edition = "2018"
 | 
			
		||||
[features]
 | 
			
		||||
# On-chain program specific dependencies
 | 
			
		||||
program = []
 | 
			
		||||
# Program elements to optionally skip
 | 
			
		||||
skip-no-mangle = []
 | 
			
		||||
# Dependencies that are not compatible or needed for on-chain programs
 | 
			
		||||
default = [
 | 
			
		||||
    "assert_matches",
 | 
			
		||||
 
 | 
			
		||||
@@ -35,7 +35,7 @@ pub const SUCCESS: u64 = 0;
 | 
			
		||||
macro_rules! entrypoint {
 | 
			
		||||
    ($process_instruction:ident) => {
 | 
			
		||||
        /// # Safety
 | 
			
		||||
        #[cfg(feature = "program")]
 | 
			
		||||
        #[cfg(not(feature = "skip-no-mangle"))]
 | 
			
		||||
        #[no_mangle]
 | 
			
		||||
        pub unsafe extern "C" fn entrypoint(input: *mut u8) -> u64 {
 | 
			
		||||
            let (program_id, accounts, instruction_data) =
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user