Compare commits

...

2 Commits

Author SHA1 Message Date
Himess
399399ed5a
Merge 7235db9899 into d43a616b56 2025-03-12 22:28:09 +08:00
Himess
7235db9899
Update init.rs 2025-03-03 22:34:41 +03:00

View File

@ -20,7 +20,7 @@ pub fn init_once() {
extern "C" {
fn GFp_cpuid_setup();
}
static INIT: std::sync::Once = std::sync::ONCE_INIT;
static INIT: std::sync::Once = std::sync::Once::new();
INIT.call_once(|| unsafe { GFp_cpuid_setup() });
}
}