File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -204,6 +204,7 @@ open_wmemstream
204204pipe2
205205pthread_condattr_setclock
206206qsort
207+ reallocarray
207208setrlimit
208209setservent
209210strcasecmp
Original file line number Diff line number Diff line change @@ -1043,6 +1043,9 @@ extern "C" {
10431043 pub fn pthread_cancel ( thread : :: pthread_t ) -> :: c_int ;
10441044 pub fn pthread_kill ( thread : :: pthread_t , sig : :: c_int ) -> :: c_int ;
10451045
1046+ // stdlib.h
1047+ pub fn reallocarray ( ptr : * mut :: c_void , nmemb : :: size_t , size : :: size_t ) -> * mut :: c_void ;
1048+
10461049 // string.h
10471050 pub fn strlcat ( dst : * mut :: c_char , src : * const :: c_char , siz : :: size_t ) -> :: size_t ;
10481051 pub fn strlcpy ( dst : * mut :: c_char , src : * const :: c_char , siz : :: size_t ) -> :: size_t ;
You can’t perform that action at this time.
0 commit comments