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
204
204
pipe2
205
205
pthread_condattr_setclock
206
206
qsort
207
+ reallocarray
207
208
setrlimit
208
209
setservent
209
210
strcasecmp
Original file line number Diff line number Diff line change @@ -1043,6 +1043,9 @@ extern "C" {
1043
1043
pub fn pthread_cancel ( thread : :: pthread_t ) -> :: c_int ;
1044
1044
pub fn pthread_kill ( thread : :: pthread_t , sig : :: c_int ) -> :: c_int ;
1045
1045
1046
+ // stdlib.h
1047
+ pub fn reallocarray ( ptr : * mut :: c_void , nmemb : :: size_t , size : :: size_t ) -> * mut :: c_void ;
1048
+
1046
1049
// string.h
1047
1050
pub fn strlcat ( dst : * mut :: c_char , src : * const :: c_char , siz : :: size_t ) -> :: size_t ;
1048
1051
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