File tree Expand file tree Collapse file tree 2 files changed +16
-0
lines changed
src/unix/bsd/netbsdlike/netbsd Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -1134,11 +1134,14 @@ easprintf
11341134efopen
11351135emalloc
11361136erealloc
1137+ ereallocarr
11371138esetfunc
11381139estrdup
11391140estrndup
11401141estrlcat
11411142estrlcpy
1143+ estrtoi
1144+ estrtou
11421145evasprintf
11431146endgrent
11441147endpwent
Original file line number Diff line number Diff line change @@ -2536,10 +2536,23 @@ extern "C" {
25362536 pub fn emalloc ( n : :: size_t ) -> * mut :: c_void ;
25372537 pub fn ecalloc ( n : :: size_t , c : :: size_t ) -> * mut :: c_void ;
25382538 pub fn erealloc ( p : * mut :: c_void , n : :: size_t ) -> * mut :: c_void ;
2539+ pub fn ereallocarr ( p : * mut :: c_void , n : :: size_t , s : :: size_t ) ;
25392540 pub fn estrdup ( s : * const :: c_char ) -> * mut :: c_char ;
25402541 pub fn estrndup ( s : * const :: c_char , len : :: size_t ) -> * mut :: c_char ;
25412542 pub fn estrlcpy ( dst : * mut :: c_char , src : * const :: c_char , len : :: size_t ) -> :: size_t ;
25422543 pub fn estrlcat ( dst : * mut :: c_char , src : * const :: c_char , len : :: size_t ) -> :: size_t ;
2544+ pub fn estrtoi (
2545+ nptr : * const :: c_char ,
2546+ base : :: c_int ,
2547+ lo : :: intmax_t ,
2548+ hi : :: intmax_t ,
2549+ ) -> :: intmax_t ;
2550+ pub fn estrtou (
2551+ nptr : * const :: c_char ,
2552+ base : :: c_int ,
2553+ lo : :: uintmax_t ,
2554+ hi : :: uintmax_t ,
2555+ ) -> :: uintmax_t ;
25432556 pub fn easprintf ( string : * mut * mut :: c_char , fmt : * const :: c_char , ...) -> :: c_int ;
25442557 pub fn evasprintf ( string : * mut * mut :: c_char , fmt : * const :: c_char , ...) -> :: c_int ;
25452558 pub fn esetfunc (
You can’t perform that action at this time.
0 commit comments