File tree Expand file tree Collapse file tree 1 file changed +6
-19
lines changed Expand file tree Collapse file tree 1 file changed +6
-19
lines changed Original file line number Diff line number Diff line change @@ -68,30 +68,17 @@ pub type __wasi_userdata_t = u64;
68
68
pub type __wasi_whence_t = u8 ;
69
69
pub type __wasi_preopentype_t = u8 ;
70
70
71
+ #[ allow( missing_copy_implementations) ]
71
72
#[ cfg_attr( feature = "extra_traits" , derive( Debug ) ) ]
72
73
pub enum FILE { }
73
- impl :: Copy for FILE { }
74
- impl :: Clone for FILE {
75
- fn clone ( & self ) -> FILE {
76
- * self
77
- }
78
- }
74
+ #[ allow( missing_copy_implementations) ]
79
75
#[ cfg_attr( feature = "extra_traits" , derive( Debug ) ) ]
80
76
pub enum DIR { }
81
- impl :: Copy for DIR { }
82
- impl :: Clone for DIR {
83
- fn clone ( & self ) -> DIR {
84
- * self
85
- }
86
- }
77
+ #[ allow( missing_copy_implementations) ]
87
78
#[ cfg_attr( feature = "extra_traits" , derive( Debug ) ) ]
88
- pub enum locale_t { }
89
- impl :: Copy for locale_t { }
90
- impl :: Clone for locale_t {
91
- fn clone ( & self ) -> locale_t {
92
- * self
93
- }
94
- }
79
+ pub enum __locale_struct { }
80
+
81
+ pub type locale_t = * mut __locale_struct ;
95
82
96
83
s ! {
97
84
#[ repr( align( 8 ) ) ]
You can’t perform that action at this time.
0 commit comments