use libc::c_double;
use sharedcache::SharedCache;
#[derive(Clone, Copy, Debug)]
#[repr(C)]
pub struct Core;
extern "C" {
pub fn Core_clockRate(this: *mut Core) -> c_double;
pub fn Core_executionTime(this: *mut Core) -> c_double;
pub fn Core_l2cache(this: *mut Core) -> *mut SharedCache;
}