Skip to content

Commit e7ff66b

Browse files
committed
Merge pull request rust-lang#53 from romanb/bugfix/android-aarch64
Fix undeclared type name errors when targeting android aarch64.
2 parents 62ce956 + 5a8485b commit e7ff66b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/unix/notbsd/android/b64.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
s! {
22
pub struct sigaction {
33
pub sa_flags: ::c_uint,
4-
pub sa_sigaction: sighandler_t,
5-
pub sa_mask: sigset_t,
4+
pub sa_sigaction: ::sighandler_t,
5+
pub sa_mask: ::sigset_t,
66
_restorer: *mut ::c_void,
77
}
88
}

0 commit comments

Comments
 (0)