Skip to content

Commit

Permalink
Fix enum timezone across all platforms.
Browse files Browse the repository at this point in the history
  • Loading branch information
nikomatsakis committed Apr 1, 2015
1 parent 943729f commit 4496433
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/liblibc/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -812,7 +812,7 @@ pub mod types {
pub tv_nsec: c_long,
}

#[derive(Copy, Clone)] pub enum timezone {}
pub enum timezone {}

pub type sighandler_t = size_t;

Expand Down Expand Up @@ -1074,7 +1074,7 @@ pub mod types {
pub tv_nsec: c_long,
}

#[derive(Copy, Clone)] pub enum timezone {}
pub enum timezone {}

pub type sighandler_t = size_t;

Expand Down Expand Up @@ -1354,7 +1354,7 @@ pub mod types {
pub tv_nsec: c_long,
}

#[derive(Copy, Clone)] pub enum timezone {}
pub enum timezone {}

pub type sighandler_t = size_t;

Expand Down Expand Up @@ -1616,7 +1616,7 @@ pub mod types {
pub tv_nsec: c_long,
}

#[derive(Copy, Clone)] pub enum timezone {}
pub enum timezone {}
}

pub mod bsd44 {
Expand Down Expand Up @@ -2020,7 +2020,7 @@ pub mod types {
pub tv_nsec: c_long,
}

#[derive(Copy, Clone)] pub enum timezone {}
pub enum timezone {}

pub type sighandler_t = size_t;

Expand Down

0 comments on commit 4496433

Please sign in to comment.