File tree 7 files changed +8
-1
lines changed
7 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 22
22
- curl https://sh.rustup.rs -sSf --output rustup.sh
23
23
- sh rustup.sh --default-toolchain nightly -y
24
24
- . $HOME/.cargo/env
25
- - rustup default nightly-2019-08-22
25
+ - rustup default nightly
26
26
test_script :
27
27
- . $HOME/.cargo/env
28
28
- LIBC_CI=1 sh ci/run.sh x86_64-unknown-freebsd
Original file line number Diff line number Diff line change @@ -140,6 +140,7 @@ extern "C" {
140
140
pub fn isspace ( c : c_int ) -> c_int ;
141
141
pub fn isupper ( c : c_int ) -> c_int ;
142
142
pub fn isxdigit ( c : c_int ) -> c_int ;
143
+ pub fn isblank ( c : c_int ) -> c_int ;
143
144
pub fn tolower ( c : c_int ) -> c_int ;
144
145
pub fn toupper ( c : c_int ) -> c_int ;
145
146
pub fn fopen ( filename : * const c_char , mode : * const c_char ) -> * mut FILE ;
Original file line number Diff line number Diff line change @@ -3293,6 +3293,7 @@ extern "C" {
3293
3293
pub fn isspace ( c : c_int ) -> c_int ;
3294
3294
pub fn isupper ( c : c_int ) -> c_int ;
3295
3295
pub fn isxdigit ( c : c_int ) -> c_int ;
3296
+ pub fn isblank ( c : c_int ) -> c_int ;
3296
3297
pub fn tolower ( c : c_int ) -> c_int ;
3297
3298
pub fn toupper ( c : c_int ) -> c_int ;
3298
3299
pub fn fopen ( filename : * const c_char , mode : * const c_char ) -> * mut FILE ;
Original file line number Diff line number Diff line change @@ -1197,6 +1197,8 @@ pub const SCHED_RR: ::c_int = 2;
1197
1197
pub const SCHED_BATCH : :: c_int = 3 ;
1198
1198
pub const SCHED_IDLE : :: c_int = 5 ;
1199
1199
1200
+ pub const SCHED_RESET_ON_FORK : :: c_int = 0x40000000 ;
1201
+
1200
1202
// netinet/in.h
1201
1203
// NOTE: These are in addition to the constants defined in src/unix/mod.rs
1202
1204
Original file line number Diff line number Diff line change @@ -385,6 +385,7 @@ extern "C" {
385
385
pub fn isspace ( c : c_int ) -> c_int ;
386
386
pub fn isupper ( c : c_int ) -> c_int ;
387
387
pub fn isxdigit ( c : c_int ) -> c_int ;
388
+ pub fn isblank ( c : c_int ) -> c_int ;
388
389
pub fn tolower ( c : c_int ) -> c_int ;
389
390
pub fn toupper ( c : c_int ) -> c_int ;
390
391
#[ cfg_attr(
Original file line number Diff line number Diff line change @@ -1035,6 +1035,7 @@ extern "C" {
1035
1035
pub fn isspace ( c : c_int ) -> c_int ;
1036
1036
pub fn isupper ( c : c_int ) -> c_int ;
1037
1037
pub fn isxdigit ( c : c_int ) -> c_int ;
1038
+ pub fn isblank ( c : c_int ) -> c_int ;
1038
1039
pub fn tolower ( c : c_int ) -> c_int ;
1039
1040
pub fn toupper ( c : c_int ) -> c_int ;
1040
1041
pub fn fopen ( filename : * const c_char , mode : * const c_char ) -> * mut FILE ;
Original file line number Diff line number Diff line change @@ -228,6 +228,7 @@ extern "C" {
228
228
pub fn isspace ( c : c_int ) -> c_int ;
229
229
pub fn isupper ( c : c_int ) -> c_int ;
230
230
pub fn isxdigit ( c : c_int ) -> c_int ;
231
+ pub fn isblank ( c : c_int ) -> c_int ;
231
232
pub fn tolower ( c : c_int ) -> c_int ;
232
233
pub fn toupper ( c : c_int ) -> c_int ;
233
234
pub fn fopen ( filename : * const c_char , mode : * const c_char ) -> * mut FILE ;
You can’t perform that action at this time.
0 commit comments