use libc::c_int;
#[no_mangle]
unsafe extern "C" fn pthread_exit() -> c_int {
todo!("pthread_exit")
}
#[no_mangle]
unsafe extern "C" fn pthread_cancel() -> c_int {
todo!("pthread_cancel")
}
#[no_mangle]
unsafe extern "C" fn __pthread_register_cancel() {
todo!("__pthread_register_cancel")
}
#[no_mangle]
unsafe extern "C" fn __pthread_unregister_cancel() {
todo!("__pthread_unregister_cancel")
}
#[no_mangle]
unsafe extern "C" fn pthread_cleanup_push() -> c_int {
todo!("pthread_cleanup_push")
}
#[no_mangle]
unsafe extern "C" fn pthread_cleanup_pop() -> c_int {
todo!("pthread_cleanup_pop")
}
#[no_mangle]
unsafe extern "C" fn pthread_setcancelstate() -> c_int {
todo!("pthread_setcancelstate")
}
#[no_mangle]
unsafe extern "C" fn pthread_setcanceltype() -> c_int {
todo!("pthread_setcanceltype")
}
#[no_mangle]
unsafe extern "C" fn pthread_testcancel() -> c_int {
todo!("pthread_testcancel")
}