• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #![allow(
2     dead_code,
3     non_snake_case,
4     non_camel_case_types,
5     non_upper_case_globals
6 )]
7 
8 pub type whatever_whatever_t = ::std::os::raw::c_int;
9 extern "C" {
10     #[link_name = "\u{1}_Z9somethingPKi"]
something(wat: *const whatever_whatever_t)11     pub fn something(wat: *const whatever_whatever_t);
12 }
13