Using 'Option' with ::

This commit is contained in:
Baoshan Pang 2019-09-25 17:19:40 -07:00
parent fc80bbbf98
commit 740ac0c2d0
1 changed files with 4 additions and 3 deletions

View File

@ -416,9 +416,10 @@ s_no_extra_traits! {
}
pub union sa_u_t {
pub sa_handler : Option<unsafe extern "C" fn(::c_int) -> !>,
pub sa_sigaction: Option<unsafe extern "C" fn(::c_int, *mut ::siginfo_t,
*mut ::c_void) -> !>,
pub sa_handler : ::Option<unsafe extern "C" fn(::c_int) -> !>,
pub sa_sigaction: ::Option<unsafe extern "C" fn(::c_int,
*mut ::siginfo_t,
*mut ::c_void) -> !>,
}
pub union sigval {