File tree 3 files changed +2
-1
lines changed
3 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -59,6 +59,7 @@ pub type uuid_t = ::uuid;
59
59
pub type fsblkcnt_t = u64 ;
60
60
pub type fsfilcnt_t = u64 ;
61
61
62
+ pub const RAND_MAX : :: c_int = 0x7fff_ffff ;
62
63
pub const PTHREAD_STACK_MIN : :: size_t = 1024 ;
63
64
pub const KERN_PROC_PATHNAME : :: c_int = 9 ;
64
65
pub const SIGSTKSZ : :: size_t = 40960 ;
Original file line number Diff line number Diff line change 42
42
pub type fsblkcnt_t = :: uint64_t ;
43
43
pub type fsfilcnt_t = :: uint64_t ;
44
44
45
+ pub const RAND_MAX : :: c_int = 0x7fff_fffd ;
45
46
pub const PTHREAD_STACK_MIN : :: size_t = 2048 ;
46
47
pub const KERN_PROC_PATHNAME : :: c_int = 12 ;
47
48
pub const SIGSTKSZ : :: size_t = 34816 ;
Original file line number Diff line number Diff line change 125
125
126
126
pub const EXIT_FAILURE : :: c_int = 1 ;
127
127
pub const EXIT_SUCCESS : :: c_int = 0 ;
128
- pub const RAND_MAX : :: c_int = 0x7fff_fffd ;
129
128
pub const EOF : :: c_int = -1 ;
130
129
pub const SEEK_SET : :: c_int = 0 ;
131
130
pub const SEEK_CUR : :: c_int = 1 ;
You can’t perform that action at this time.
0 commit comments