File tree Expand file tree Collapse file tree 3 files changed +6
-0
lines changed Expand file tree Collapse file tree 3 files changed +6
-0
lines changed Original file line number Diff line number Diff line change 1
1
# [ Unreleased]
2
2
3
+ - Add VxWorks support
4
+ [ #105 ] ( https://github.com/lambda-fairy/rust-errno/pull/105 )
5
+
3
6
# [ 0.3.10] - 2024-11-29
4
7
5
8
- Update to windows-sys 0.59
Original file line number Diff line number Diff line change @@ -124,6 +124,8 @@ fn check_description() {
124
124
"Argument list too long"
125
125
} else if cfg ! ( target_os = "haiku" ) {
126
126
"Operation not allowed"
127
+ } else if cfg ! ( target_os = "vxworks" ) {
128
+ "operation not permitted"
127
129
} else {
128
130
"Operation not permitted"
129
131
} ;
Original file line number Diff line number Diff line change @@ -77,6 +77,7 @@ extern "C" {
77
77
target_os = "netbsd" ,
78
78
target_os = "android" ,
79
79
target_os = "espidf" ,
80
+ target_os = "vxworks" ,
80
81
target_env = "newlib"
81
82
) ,
82
83
link_name = "__errno"
You can’t perform that action at this time.
0 commit comments