diff options
Diffstat (limited to 'tests/expectations/tests/without_array_pointers_arguments.rs')
-rw-r--r-- | tests/expectations/tests/without_array_pointers_arguments.rs | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/tests/expectations/tests/without_array_pointers_arguments.rs b/tests/expectations/tests/without_array_pointers_arguments.rs deleted file mode 100644 index c4acdb3e..00000000 --- a/tests/expectations/tests/without_array_pointers_arguments.rs +++ /dev/null @@ -1,25 +0,0 @@ -#![allow( - dead_code, - non_snake_case, - non_camel_case_types, - non_upper_case_globals -)] - -extern "C" { - pub fn test_fn( - a: f32, - arr: *mut ::std::os::raw::c_int, - ) -> ::std::os::raw::c_int; -} -extern "C" { - pub fn test_fn2( - arr: *const f32, - b: ::std::os::raw::c_int, - ) -> ::std::os::raw::c_int; -} -pub type defArr = [::std::os::raw::c_char; 20usize]; -pub type foo = - ::std::option::Option<unsafe extern "C" fn(a: *mut ::std::os::raw::c_char)>; -extern "C" { - pub fn bar(a: *mut ::std::os::raw::c_char); -} |