remove function struct export workaround for aarch64_user header

This commit is contained in:
auronandace
2026-05-20 08:07:29 +01:00
parent b07babc03c
commit f232f33329
2 changed files with 9 additions and 10 deletions
@@ -5,3 +5,12 @@ style = "Tag"
[enum]
prefix_with_name = true
[export]
include = [
"user_regs_struct",
"user_fpsimd_struct",
"elf_gregset_t",
"elf_greg_t",
"elf_fpregset_t"
]
-10
View File
@@ -18,13 +18,3 @@ pub struct user_fpsimd_struct {
pub type elf_greg_t = c_ulong;
pub type elf_gregset_t = *mut [c_ulong; 34];
pub type elf_fpregset_t = user_fpsimd_struct;
#[unsafe(no_mangle)]
pub extern "C" fn _cbindgen_export_aarch64_user(
a: user_regs_struct,
b: user_fpsimd_struct,
c: elf_gregset_t,
d: elf_greg_t,
e: elf_fpregset_t,
) {
}