File tree 2 files changed +9
-0
lines changed
2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -1939,6 +1939,7 @@ strcasestr
1939
1939
strncasecmp
1940
1940
strndup
1941
1941
strsignal
1942
+ strtonum
1942
1943
sync
1943
1944
syscall
1944
1945
sysctl
Original file line number Diff line number Diff line change @@ -5203,6 +5203,14 @@ extern "C" {
5203
5203
pub fn memset_pattern8 ( b : * mut :: c_void , pattern8 : * const :: c_void , len : :: size_t ) ;
5204
5204
pub fn memset_pattern16 ( b : * mut :: c_void , pattern16 : * const :: c_void , len : :: size_t ) ;
5205
5205
5206
+ // Inherited from BSD but available from Big Sur only
5207
+ pub fn strtonum (
5208
+ __numstr : * const :: c_char ,
5209
+ __minval : :: c_longlong ,
5210
+ __maxval : :: c_longlong ,
5211
+ errstrp : * mut * const :: c_char ,
5212
+ ) -> :: c_longlong ;
5213
+
5206
5214
pub fn mstats ( ) -> mstats ;
5207
5215
pub fn malloc_printf ( format : * const :: c_char , ...) ;
5208
5216
pub fn malloc_zone_check ( zone : * mut :: malloc_zone_t ) -> :: boolean_t ;
You can’t perform that action at this time.
0 commit comments