Skip to content

Commit 4496433

Browse files
committed
Fix enum timezone across all platforms.
1 parent 943729f commit 4496433

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/liblibc/lib.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -812,7 +812,7 @@ pub mod types {
812812
pub tv_nsec: c_long,
813813
}
814814

815-
#[derive(Copy, Clone)] pub enum timezone {}
815+
pub enum timezone {}
816816

817817
pub type sighandler_t = size_t;
818818

@@ -1074,7 +1074,7 @@ pub mod types {
10741074
pub tv_nsec: c_long,
10751075
}
10761076

1077-
#[derive(Copy, Clone)] pub enum timezone {}
1077+
pub enum timezone {}
10781078

10791079
pub type sighandler_t = size_t;
10801080

@@ -1354,7 +1354,7 @@ pub mod types {
13541354
pub tv_nsec: c_long,
13551355
}
13561356

1357-
#[derive(Copy, Clone)] pub enum timezone {}
1357+
pub enum timezone {}
13581358

13591359
pub type sighandler_t = size_t;
13601360

@@ -1616,7 +1616,7 @@ pub mod types {
16161616
pub tv_nsec: c_long,
16171617
}
16181618

1619-
#[derive(Copy, Clone)] pub enum timezone {}
1619+
pub enum timezone {}
16201620
}
16211621

16221622
pub mod bsd44 {
@@ -2020,7 +2020,7 @@ pub mod types {
20202020
pub tv_nsec: c_long,
20212021
}
20222022

2023-
#[derive(Copy, Clone)] pub enum timezone {}
2023+
pub enum timezone {}
20242024

20252025
pub type sighandler_t = size_t;
20262026

0 commit comments

Comments
 (0)