fn no_mangle_attribute_codes()

in optee-utee-build/src/code_generator.rs [322:327]


    fn no_mangle_attribute_codes(&self) -> proc_macro2::TokenStream {
        match self {
            RustEdition::Before2024 => quote! { #[no_mangle] },
            RustEdition::Edition2024 => quote! { #[unsafe(no_mangle)] },
        }
    }