Skip to content

Commit 68abfad

Browse files
authored
Auto merge of #415 - kallisti5:master, r=alexcrichton
Haiku: Add in missing build-time types, fix module usage Working through the few final remaining build issues for the Haiku target.
2 parents ed16fe6 + e8155ba commit 68abfad

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/unix/haiku/mod.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ pub type sigset_t = u64;
2626
pub type fsblkcnt_t = i64;
2727
pub type fsfilcnt_t = i64;
2828
pub type pthread_attr_t = *mut ::c_void;
29+
pub type nl_item = ::c_int;
2930

3031
pub enum timezone {}
3132

@@ -704,7 +705,9 @@ extern {
704705
cfg_if! {
705706
if #[cfg(target_pointer_width = "64")] {
706707
mod b64;
708+
pub use self::b64::*;
707709
} else {
708710
mod b32;
711+
pub use self::b32::*;
709712
}
710713
}

0 commit comments

Comments
 (0)