1mod pthread_interpose; 2 3// Force this function to be linked, but it shouldn't actually be called by 4// users directly as it interposes the libc `pthread_create` 5#[doc(hidden)] 6#[cfg(not(miri))] 7pub use pthread_interpose::pthread_create;