summaryrefslogtreecommitdiffstats
path: root/library/std/src/sys/teeos/thread_local_dtor.rs
blob: 5c6bc4d6750119f274800e6060f5a8088f135bce (plain)
1
2
3
4
pub unsafe fn register_dtor(t: *mut u8, dtor: unsafe extern "C" fn(*mut u8)) {
    use crate::sys_common::thread_local_dtor::register_dtor_fallback;
    register_dtor_fallback(t, dtor);
}